package com.safemobile.interfaces; public interface ITCPListener { public void onLoginReceived( TCPEvent event ); public void onGPSReceived( TCPEvent event ); public void onVehiclesReceived( TCPEvent event ); public void onLastSMSsReceived( TCPEvent event ); public void onSMSReceived( TCPEvent event ); public void onSMSAckReceived( TCPEvent event ); public void onNewSMSReceived( TCPEvent event ); public void onLastPositionsReceived( TCPEvent event ); public void onRadioMsgReceived( TCPEvent event ); public void onHistoryPositionsReceived( TCPEvent event ); public void onHistoryPositionsCountReceived( TCPEvent event ); public void onAlarmsReceived( TCPEvent event ); public void onAlarmAckReceived(TCPEvent event); public void alarmLiveReceived(TCPEvent event); public void onRecordingPlayReceived(TCPEvent event); public void onPollReceived(TCPEvent event); public void onConnectionReplyReceived (TCPEvent event); public void onContactsListReceived (TCPEvent event); public void onTextMessagesListReceived (TCPEvent event); public void onRecordingsListReceived(TCPEvent event); public void onPONGReceived(); public void onTCPConnectionDown(boolean previousWasConnectionUp); public void onTCPConnectionUp(boolean previousWasConnectionUp); public void onTCPConnectionStatusReceived(boolean isConnectionUp, boolean previousWasConnectionUp); }