mirror of
https://github.com/klmp200/PQT_Gestionnaire_vente_stock.git
synced 2025-06-30 15:15:26 +00:00
16 lines
275 B
Java
16 lines
275 B
Java
package com.pqt.client.module.connection.listeners;
|
|
|
|
import java.util.EventListener;
|
|
|
|
public interface IConnectionListener extends EventListener {
|
|
|
|
void onMessageReceivedEvent(String msg);
|
|
|
|
void onConnectedEvent();
|
|
|
|
void onDisconnectedEvent();
|
|
|
|
void onTimeOutEvent();
|
|
|
|
}
|