Search in sources :

Example 1 with Up4DbufConfig

use of org.omecproject.up4.config.Up4DbufConfig in project up4 by omec-project.

the class Up4DeviceManager method updateConfig.

private void updateConfig() {
    Up4Config up4Config = netCfgService.getConfig(appId, Up4Config.class);
    if (up4Config != null) {
        upfUpdateConfig(up4Config);
    }
    // We might end-up with requests for buffering but DBUF is not ready/configured yet.
    // Being DBUF best effort should not be a big deal if that happens at very beginning
    Up4DbufConfig dbufConfig = netCfgService.getConfig(appId, Up4DbufConfig.class);
    if (dbufConfig != null) {
        dbufUpdateConfig(dbufConfig);
    }
}
Also used : Up4DbufConfig(org.omecproject.up4.config.Up4DbufConfig) Up4Config(org.omecproject.up4.config.Up4Config)

Aggregations

Up4Config (org.omecproject.up4.config.Up4Config)1 Up4DbufConfig (org.omecproject.up4.config.Up4DbufConfig)1