?? appccallimpl.java
字號:
package samples;
public class AppCCallImpl extends AppMMCallImpl
implements org.csapi.cc.cccs.IpAppConfCallOperations
{
public AppCCallImpl(){super();}
public org.csapi.cc.mpccs.IpAppCallLeg partyJoined(
int conferenceSessionID,
org.csapi.cc.mpccs.TpCallLegIdentifier callLeg,
org.csapi.cc.cccs.TpJoinEventInfo eventInfo)
{
// to create a new thread to handle the callback so that
// server is not hold up
//
(new Thread()
{
public void run() {
TheApplication.partyJoined(
conferenceSessionID, callLeg, eventInfo);
}
}
).start();
// This is the way in POA
//
IpAppCallLeg leg = org.csapi.cc.mpccs.IpCallLegHelper.narrow(
TheApplication.poa.servant_to_reference(new IpAppCallLegImpl());
return leg;
}
public void leaveMonitorRes (int conferenceSessionID, int callLeg)
{
TheApplication.leaveMonitorRes(conferenceSessionID, callLeg);
}
}
/*
* $Log: AppCCallImpl.java,v $ * Revision 1.1 2002/07/25 15:33:48 hni * *** empty log message *** *
*
*/
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -