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

io.infinicast.client.protocol.IEndpoint2ConnectorProtocolHandler Maven / Gradle / Ivy

There is a newer version: 3.0.10
Show newest version
package io.infinicast.client.protocol;

import io.infinicast.JArray;
import io.infinicast.JObject;
public interface IEndpoint2ConnectorProtocolHandler {
    void onInitConnector(JObject data, JObject senderEndpoint);
    void onReceiveRequestResponse(JObject data, int requestId, JObject senderEndpointObject);
    void onReceiveRequest(JObject data, String path, int requestId, JObject senderEndpointObject);
    void onReceiveJsonQueryResult(JArray list, int fullCount, int requestId);
    void onCreateChildSuccess(JObject data, String path, int requestId);
    void onIntroduceObject(JObject data, String path, JObject endpointObject);
    void onReceiveMessage(JObject data, String path, JObject endpointObject);
    void onReceiveMessageValidate(JObject data, String path, JObject endpointObject);
    void onListAdd(JObject data, String listPath, String path, JObject senderEndpointObject);
    void onListRemove(JObject data, String listPath, String path, JObject senderEndpointObject);
    void onListChange(JObject data, String listPath, String path, JObject senderEndpointObject);
    void onSetObjectData(JObject data, String path, JObject endpointObject);
    void onGetOrCreate(JObject data, String path, int requestId, boolean newlyCreated);
    void onCreateOrUpdateRole(JObject data, int requestId);
    void onDestroyRole(JObject data, int requestId);
    void onGetRoleForPathResult(JArray arr, JObject data, int requestId);
    void onListeningEnded(String path, JObject endpointObject, boolean disconnected, JObject data);
    void onListeningStarted(String path, JObject endpointObject, JObject data);
    void onListeningChanged(String path, JObject endpointObject, JObject data);
    void onDebugStatistics(JObject json, int requestId);
    void onPathRoleSetup(JObject data, int requestId);
    void onReminderTriggered(String path, JObject data);
    void onReceiveDataChangeValidate(JObject data, String path, JObject endpointObject);
    void onListenTerminate(JObject data);
    void onEndpointDisconnected(String path, JObject endpointObject);
    void onDebugObserverMessage(String path, JObject data);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy