Package plugins.Freetalk.tasks

Examples of plugins.Freetalk.tasks.SubscribeToAllBoardsTask


   * Creates a SubscribeToAllBoardsTask for the identity if auto-subscription to boards is enabled.
   */
  public void onNewOwnIdentityAdded(OwnIdentity identity) {
    if(identity.wantsAutoSubscribeToNewBoards()) {
      // We cannot subscribe to the boards here because we lack the lock to the MessageManager
      mFreetalk.getTaskManager().storeTaskWithoutCommit(new SubscribeToAllBoardsTask(identity));
      mFreetalk.getTaskManager().processTasksSoon();
    }
  }
View Full Code Here

TOP

Related Classes of plugins.Freetalk.tasks.SubscribeToAllBoardsTask

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.