|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface MsLinkListener
The class interested in receiving the MsLinkEvent should implement
this interface. When ever there is change in state of MsLink,
instance of MsLinkEvent is fired.
| Method Summary | |
|---|---|
void |
linkConnected(MsLinkEvent evt)
This method is called when MsLinkEventID.LINK_CONNECTED is
fired. |
void |
linkCreated(MsLinkEvent evt)
This method is called when MsLinkEventID.LINK_CREATED is
fired. |
void |
linkDisconnected(MsLinkEvent evt)
This method is called when MsLinkEventID.LINK_DISCONNECTED is fired. |
void |
linkFailed(MsLinkEvent evt)
This method is called when MsLinkEventID.LINK_FAILED is fired. |
| Method Detail |
|---|
void linkCreated(MsLinkEvent evt)
MsLinkEventID.LINK_CREATED is
fired. MsLink is created by calling
MsSession msSession; ... msSession.createLink(mode);
evt - void linkConnected(MsLinkEvent evt)
MsLinkEventID.LINK_CONNECTED is
fired. Fired when
MsLink msLink;
...
msLink.join("media/trunk/PacketRelay/enp-2", "media/trunk/Announcement/$");
is called and joining of two Endpoint is successful
evt - void linkDisconnected(MsLinkEvent evt)
MsLinkEventID.LINK_DISCONNECTED is fired. Fired
when
is calledMsLink msLink; ... msLink.release();
evt - void linkFailed(MsLinkEvent evt)
MsLinkEventID.LINK_FAILED is fired. Fired when
MsLink msLink;
...
msLink.join("media/trunk/IVR/$", "media/trunk/Conference/enp-1");
is called and joining of two Endpoint fails
evt -
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||