本文整理汇总了Java中org.jivesoftware.openfire.cluster.ClusterManager.isClusteringStarting方法的典型用法代码示例。如果您正苦于以下问题:Java ClusterManager.isClusteringStarting方法的具体用法?Java ClusterManager.isClusteringStarting怎么用?Java ClusterManager.isClusteringStarting使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.jivesoftware.openfire.cluster.ClusterManager
的用法示例。
在下文中一共展示了ClusterManager.isClusteringStarting方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: execute
import org.jivesoftware.openfire.cluster.ClusterManager; //导入方法依赖的package包/类
/**
* Executes the requested task considering that this JVM may still be joining the cluster.
* This means that events regarding rooms that were not loaded yet will be stored for later
* processing. Once the JVM is done joining the cluster queued tasks will be processed.
*
* @param runnable the task to execute.
*/
protected void execute(Runnable runnable) {
// Check if we are joining a cluster
boolean clusterStarting = ClusterManager.isClusteringStarting();
try {
// Check that the room exists
getRoom();
// Room was found so now execute the task
runnable.run();
}
catch (IllegalArgumentException e) {
// Room not found so check if we are still joining the cluster
if (clusterStarting) {
// Queue task in case the cluster
QueuedTasksManager.getInstance().addTask(this);
}
else {
// Task failed since room was not found
Log.error(e.getMessage(), e);
}
}
}