All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alibaba.spring.boot.rsocket.broker.services.ConfigurationService Maven / Gradle / Ivy

There is a newer version: 1.1.6
Show newest version
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