Package org.olat.instantMessaging.syncservice

Examples of org.olat.instantMessaging.syncservice.SyncSingleUserTask


        //only sync when a group is a certain type and this type is configured that you want to sync it
        if ((syncBuddy && isBuddy) || (syncLearn && isLearn)) {
          String groupID = InstantMessagingModule.getAdapter().createChatRoomString(group);
          String groupDisplayName = group.getName();
          //course group enrolment is time critial so we move this in an separate thread and catch all failures
          TaskExecutorManager.getInstance().runTask(new SyncSingleUserTask(ureqIdentity, groupID, groupDisplayName, identity));
        }
      }
    }
  }
View Full Code Here

TOP

Related Classes of org.olat.instantMessaging.syncservice.SyncSingleUserTask

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.