Package net.solosky.maplefetion.util

Examples of net.solosky.maplefetion.util.CallHelper


   * @param client
   */
  public LiveV1ChatDialog(Buddy mainBuddy, FetionContext client)
  {
    super(mainBuddy, client);
    this.callHelper = new CallHelper();
    this.ackWaiter  = new ObjectWaiter<Boolean>();
  }
View Full Code Here


  public LiveV1ChatDialog(SipcNotify inviteNotify, FetionContext client)
  {
    super(client);
    this.inviteNotify = inviteNotify;
    this.ackWaiter    = new ObjectWaiter<Boolean>();
    this.callHelper   = new CallHelper(inviteNotify.getCallID());
    this.mainBuddy    = client.getFetionStore().getBuddyByUri(
            inviteNotify.getFrom());
  }
View Full Code Here

     */
    public GroupDialog(FetionContext client, Group group)
    {
      super(client);
      this.group  = group;
      this.helper = new CallHelper();
      this.keepLiveTask = new GroupKeepLiveTask();
    }
View Full Code Here

TOP

Related Classes of net.solosky.maplefetion.util.CallHelper

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.