convex.peer.IServerEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of convex-peer Show documentation
Show all versions of convex-peer Show documentation
Convex Peer implementation and APIs
package convex.peer;
/**
* Server Event Interface. The server will post events to this the callback.
*
*/
public interface IServerEvent {
void onServerChange(ServerEvent serverEvent); // sent on server change status, connections, consensus
}