This commit is contained in:
crusader
2018-05-10 17:33:00 +09:00
parent cc011d6924
commit 0e435f73ff
4 changed files with 52 additions and 1 deletions

View File

@@ -16,6 +16,10 @@ public interface NoAuthProbeService {
NoAuthProbe regist(NoAuthProbe noAuthProbe) throws OverflowException;
@ProbeAPI
NoAuthProbe readByTempProbeKey(String tempKey) throws OverflowException;
@ProbeAPI
void onConnect(String tempKey, String connectAddress) throws OverflowException;
@ProbeAPI
void onDisconnect(String tempKey) throws OverflowException;
@WebappAPI
List<NoAuthProbe> readAllByDomain(Domain domain) throws OverflowException;

View File

@@ -29,4 +29,9 @@ public interface ProbeService {
@ProbeAPI //?
Probe modify(Probe probe) throws OverflowException;
@ProbeAPI
void onConnect(String probeKey, String connectAddress) throws OverflowException;
@ProbeAPI
void onDisconnect(String probeKey) throws OverflowException;
}