-
public interface ChannelConfigRepositoryRepository to read and write data of ChannelConfig
-
-
Method Summary
Modifier and Type Method Description abstract UnitcacheChannelConfigs()Caches in memory data from DB. abstract ChannelConfigselectChannelConfig(String channelType)Select the ChannelConfig for a channel type. abstract UnitinsertChannelConfigs(Collection<ChannelConfig> configs)Writes many ChannelConfig abstract UnitinsertChannelConfig(ChannelConfig config)Writes ChannelConfig -
-
Method Detail
-
cacheChannelConfigs
abstract Unit cacheChannelConfigs()
Caches in memory data from DB.
-
selectChannelConfig
abstract ChannelConfig selectChannelConfig(String channelType)
Select the ChannelConfig for a channel type.
-
insertChannelConfigs
abstract Unit insertChannelConfigs(Collection<ChannelConfig> configs)
Writes many ChannelConfig
-
insertChannelConfig
abstract Unit insertChannelConfig(ChannelConfig config)
Writes ChannelConfig
-
-
-
-