summaryrefslogtreecommitdiff
path: root/same/src/main/java/com/orbekk/same/ClientService.java
blob: 04f423d235ae09987605946c1651ea5e229e9b19 (plain)
1
2
3
4
5
6
7
8
9
10
package com.orbekk.same;

public interface ClientService {
    void notifyNetwork(String networkName, String masterUrl) throws Exception;

    void setState(String component, String data, long revision) throws Exception;

    // Manual discovery request by client.
    void discoveryRequest(String remoteUrl) throws Exception;
}