⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 appccallimpl.java

📁 中兴公司在parlayx开发方面的培训文档
💻 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 + -