Interface BotVectorStoreConfigurationDAO
-
- All Implemented Interfaces:
public interface BotVectorStoreConfigurationDAO
-
-
Method Summary
Modifier and Type Method Description abstract UnitlistenChanges(Function0<Unit> listener)abstract BotVectorStoreConfigurationsave(BotVectorStoreConfiguration conf)abstract BotVectorStoreConfigurationfindByNamespaceAndBotId(String namespace, String botId)abstract BotVectorStoreConfigurationfindByNamespaceAndBotIdAndEnabled(String namespace, String botId, Boolean enabled)abstract Unitdelete(Id<BotVectorStoreConfiguration> id)-
-
Method Detail
-
listenChanges
abstract Unit listenChanges(Function0<Unit> listener)
-
save
abstract BotVectorStoreConfiguration save(BotVectorStoreConfiguration conf)
-
findByNamespaceAndBotId
abstract BotVectorStoreConfiguration findByNamespaceAndBotId(String namespace, String botId)
-
findByNamespaceAndBotIdAndEnabled
abstract BotVectorStoreConfiguration findByNamespaceAndBotIdAndEnabled(String namespace, String botId, Boolean enabled)
-
delete
abstract Unit delete(Id<BotVectorStoreConfiguration> id)
-
-
-
-