public interface ATCommandListener
| Modifier and Type | Method and Description | 
|---|---|
| void | ATEvent(String Event)Callback method for unsolicited AT-Events (URCs). | 
| void | CONNChanged(boolean SignalState)Callback method for change of the state of a data connection. | 
| void | DCDChanged(boolean SignalState)Callback method for change of the serial interface signal DCD (Data Carrier
 Detect). | 
| void | DSRChanged(boolean SignalState)Callback method for change of the serial interface signal DSR (Data Set
 Ready). | 
| void | RINGChanged(boolean SignalState)Callback method for change of the serial interface signal RING. | 
void ATEvent(String Event)
Event - The occured AT-Event (URC).ATCommand, 
ATCommand.addListener(ATCommandListener)void CONNChanged(boolean SignalState)
SignalState - The new state of a data connection.ATCommand, 
ATCommand.addListener(ATCommandListener)void DCDChanged(boolean SignalState)
SignalState - The new state of the DCD signal.ATCommand, 
ATCommand.addListener(ATCommandListener)void DSRChanged(boolean SignalState)
SignalState - The new state of the DSR signal.ATCommand, 
ATCommand.addListener(ATCommandListener)void RINGChanged(boolean SignalState)
SignalState - The new state of the RING signal.ATCommand, 
ATCommand.addListener(ATCommandListener)