use of com.tvd12.ezyfoxserver.client.config.EzyClientConfig in project ezyfox-server-example by tvd12.
the class HelloWorldClient method setup.
protected EzyClient setup() {
EzyClientConfig clientConfig = EzyClientConfig.builder().zoneName(ZONE_NAME).enableSSL().enableDebug().build();
EzyClients clients = EzyClients.getInstance();
EzyClient client = new EzyUTClient(clientConfig);
clients.addClient(client);
EzySetup setup = client.setup();
setup.addEventHandler(EzyEventType.CONNECTION_SUCCESS, new EzyConnectionSuccessHandler());
setup.addEventHandler(EzyEventType.CONNECTION_FAILURE, new EzyConnectionFailureHandler());
setup.addDataHandler(EzyCommand.HANDSHAKE, new ExHandshakeEventHandler());
setup.addDataHandler(EzyCommand.LOGIN, new ExLoginSuccessHandler());
setup.addDataHandler(EzyCommand.APP_ACCESS, new ExAccessAppHandler());
EzyAppSetup appSetup = setup.setupApp(APP_NAME);
appSetup.addDataHandler("greet", new ChatGreetResponseHandler());
appSetup.addDataHandler("secureChat", new SecureChatResponseHandler());
appSetup.addDataHandler("chatAll", new EzyAppDataHandler<EzyData>() {
@Override
public void handle(EzyApp app, EzyData data) {
System.out.println("chatAll: " + data);
}
});
appSetup.addDataHandler("chat1", new EzyAppDataHandler<EzyData>() {
@Override
public void handle(EzyApp app, EzyData data) {
System.out.println("chat1: " + data);
}
});
appSetup.addDataHandler("chatToMe", new EzyAppDataHandler<EzyData>() {
@Override
public void handle(EzyApp app, EzyData data) {
System.out.println("chatToMe: " + data);
}
});
appSetup.addDataHandler("err", new EzyAppDataHandler<EzyData>() {
@Override
public void handle(EzyApp app, EzyData data) {
System.out.println("error: " + data);
}
});
return client;
}
use of com.tvd12.ezyfoxserver.client.config.EzyClientConfig in project ezyfox-server-example by tvd12.
the class HelloWorldClientUdp method setup.
protected EzyClient setup() {
EzyClientConfig clientConfig = EzyClientConfig.builder().zoneName(ZONE_NAME).enableSSL().enableDebug().build();
EzyClients clients = EzyClients.getInstance();
EzyClient client = new EzyUTClient(clientConfig);
clients.addClient(client);
EzySetup setup = client.setup();
setup.addEventHandler(EzyEventType.CONNECTION_SUCCESS, new EzyConnectionSuccessHandler());
setup.addEventHandler(EzyEventType.CONNECTION_FAILURE, new EzyConnectionFailureHandler());
setup.addDataHandler(EzyCommand.HANDSHAKE, new ExHandshakeEventHandler());
setup.addDataHandler(EzyCommand.LOGIN, new ExLoginSuccessHandler());
setup.addDataHandler(EzyCommand.UDP_HANDSHAKE, new ExHandshakeSuccessHandler());
setup.addDataHandler(EzyCommand.APP_ACCESS, new ExAccessAppHandler());
EzyAppSetup appSetup = setup.setupApp(APP_NAME);
appSetup.addDataHandler("greet", new ChatGreetResponseHandler());
appSetup.addDataHandler("udpGreet", (EzyAppDataHandler<EzyData>) (app, data) -> System.out.println("udpGreet: " + data));
appSetup.addDataHandler("secureChat", new SecureChatResponseHandler());
appSetup.addDataHandler("chatAll", (EzyAppDataHandler<EzyData>) (app, data) -> System.out.println("chatAll: " + data));
appSetup.addDataHandler("chat1", (EzyAppDataHandler<EzyData>) (app, data) -> System.out.println("chat1: " + data));
appSetup.addDataHandler("chatToMe", (EzyAppDataHandler<EzyData>) (app, data) -> System.out.println("chatToMe: " + data));
appSetup.addDataHandler("err", (EzyAppDataHandler<EzyData>) (app, data) -> System.out.println("error: " + data));
return client;
}
use of com.tvd12.ezyfoxserver.client.config.EzyClientConfig in project ezyfox-server-android-client by youngmonkeys.
the class EzyConnectionFailureHandler method handle.
@Override
public final void handle(EzyConnectionFailureEvent event) {
EzyLogger.info("connection failure, reason = " + event.getReason());
EzyClientConfig config = client.getConfig();
EzyReconnectConfig reconnectConfig = config.getReconnect();
boolean shouldReconnect = shouldReconnect(event);
boolean mustReconnect = reconnectConfig.isEnable() && shouldReconnect;
boolean reconnecting = false;
client.setStatus(EzyConnectionStatus.FAILURE);
if (mustReconnect)
reconnecting = client.reconnect();
if (reconnecting) {
onReconnecting(event);
} else {
onConnectionFailed(event);
}
postHandle(event);
}
use of com.tvd12.ezyfoxserver.client.config.EzyClientConfig in project ezyfox-server-example by tvd12.
the class SimpleChatClient method setup.
protected EzyClient setup() {
EzyClientConfig clientConfig = EzyClientConfig.builder().zoneName(ZONE_NAME).build();
EzyClients clients = EzyClients.getInstance();
EzyClient client = new EzyUTClient(clientConfig);
clients.addClient(client);
EzySetup setup = client.setup();
setup.addEventHandler(EzyEventType.CONNECTION_SUCCESS, new EzyConnectionSuccessHandler());
setup.addEventHandler(EzyEventType.CONNECTION_FAILURE, new EzyConnectionFailureHandler());
setup.addDataHandler(EzyCommand.HANDSHAKE, new ExHandshakeEventHandler());
setup.addDataHandler(EzyCommand.LOGIN, new ExLoginSuccessHandler());
setup.addDataHandler(EzyCommand.APP_ACCESS, new ExAccessAppHandler());
EzyAppSetup appSetup = setup.setupApp(APP_NAME);
appSetup.addDataHandler("chat/sendMessage", new ChatSendMessageResponseHandler());
appSetup.addDataHandler("greet", new ChatGreetResponseHandler());
appSetup.addDataHandler("hello", new ChatHelloResponseHandler());
return client;
}
use of com.tvd12.ezyfoxserver.client.config.EzyClientConfig in project ezyfox-server-android-client by youngmonkeys.
the class EzyDisconnectionHandler method handle.
@Override
public final void handle(EzyDisconnectionEvent event) {
String reasonName = EzyDisconnectReasons.getDisconnectReasonName(event.getReason());
EzyLogger.info("handle disconnection, reason: " + reasonName);
preHandle(event);
EzyClientConfig config = client.getConfig();
EzyReconnectConfig reconnectConfig = config.getReconnect();
boolean shouldReconnect = shouldReconnect(event);
boolean mustReconnect = reconnectConfig.isEnable() && event.getReason() != EzyDisconnectReason.UNAUTHORIZED.getId() && event.getReason() != EzyDisconnectReason.CLOSE.getId() && shouldReconnect;
boolean reconnecting = false;
client.setStatus(EzyConnectionStatus.DISCONNECTED);
if (mustReconnect)
reconnecting = client.reconnect();
if (reconnecting) {
onReconnecting(event);
} else {
onDisconnected(event);
}
postHandle(event);
}
Aggregations