public interface TerminalListener
| Modifier and Type | Method and Description |
|---|---|
void |
terminalConnected(Terminal terminal,
CallParameters parameters)
A connection has been established with the given terminal.
|
void |
terminalDisconnected(Terminal terminal)
A connection has been disconnected with the given terminal.
|
void |
terminalError(Terminal terminal,
java.lang.String message,
java.lang.Throwable cause)
An error has occurred while interacting with the terminal.
|
void terminalConnected(Terminal terminal, CallParameters parameters)
terminal - the connected terminal.parameters - additional call parametersvoid terminalDisconnected(Terminal terminal)
terminal - the disconnected terminal.void terminalError(Terminal terminal, java.lang.String message, java.lang.Throwable cause)
terminal - the terminalmessage - a detailed message about the errorcause - the error cause.