| java.lang.Object java.util.EventObject javax.sip.DialogTerminatedEvent
DialogTerminatedEvent | public class DialogTerminatedEvent extends EventObject (Code) | | DialogTerminatedEvent is delivered to the Listener when the
dialog transitions to the terminated state. An implementation
is expected to deliver this event to the listener when it discards
all internal book keeping records for a given dialog, allowing the
Listener to unmap its own data structures.
author: BEA Systems, NIST since: v1.2 |
Constructor Summary | |
public | DialogTerminatedEvent(Object source, Dialog dialog) Constructs a DialogTerminatedEvent to indicate a dialog
timeout.
Parameters: source - - the source of TimeoutEvent. |
Method Summary | |
public Dialog | getDialog() Gets the Dialog associated with the event. |
DialogTerminatedEvent | public DialogTerminatedEvent(Object source, Dialog dialog)(Code) | | Constructs a DialogTerminatedEvent to indicate a dialog
timeout.
Parameters: source - - the source of TimeoutEvent. Parameters: dialog - - the dialog that timed out. |
getDialog | public Dialog getDialog()(Code) | | Gets the Dialog associated with the event. This
enables application developers to access the dialog associated to this
event.
the dialog associated with the response event or null if there is no dialog. since: v1.2 |
|
|