Package com.google.walkaround.wave.shared

Examples of com.google.walkaround.wave.shared.ContactsService$ContactList


  /**
   * Creates a contacts manager. The manager will start fetching contacts
   * immediately.
   */
  public static ContactsManager create(Rpc rpc) {
    ContactsService service = new RemoteContactsService(rpc);
    TimerService timer = SchedulerInstance.getLowPriorityTimer();
    ContactsManager manager = new ContactsManager(service, timer, new Random());
    manager.fetchNext();
    return manager;
  }
View Full Code Here

TOP

Related Classes of com.google.walkaround.wave.shared.ContactsService$ContactList

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.