com.alibaba.spring.boot.rsocket.broker.services.ConfigurationService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alibaba-broker-spring-boot-starter Show documentation
Show all versions of alibaba-broker-spring-boot-starter Show documentation
Alibaba RSocket Broker Spring Boot Starter for extension
package com.alibaba.spring.boot.rsocket.broker.services;
import reactor.core.publisher.Flux;
import reactor.core.publisher.Mono;
/**
* configuration service
*
* @author leijuan
*/
public interface ConfigurationService {
Flux getGroups();
Flux findNamesByGroup(String groupName);
Mono put(String key, String value);
Mono delete(String key);
Mono get(String key);
Flux watch(String key);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy