本文整理汇总了Java中org.opendaylight.controller.cluster.datastore.exceptions.UnknownMessageException类的典型用法代码示例。如果您正苦于以下问题:Java UnknownMessageException类的具体用法?Java UnknownMessageException怎么用?Java UnknownMessageException使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
UnknownMessageException类属于org.opendaylight.controller.cluster.datastore.exceptions包,在下文中一共展示了UnknownMessageException类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: findLocalShardAsync
import org.opendaylight.controller.cluster.datastore.exceptions.UnknownMessageException; //导入依赖的package包/类
/**
* Finds a local shard async given its shard name and return a Future from which to obtain the
* ActorRef.
*
* @param shardName the name of the local shard that needs to be found
*/
public Future<ActorRef> findLocalShardAsync(final String shardName) {
Future<Object> future = executeOperationAsync(shardManager,
new FindLocalShard(shardName, true), shardInitializationTimeout);
return future.map(new Mapper<Object, ActorRef>() {
@Override
public ActorRef checkedApply(Object response) throws Throwable {
if (response instanceof LocalShardFound) {
LocalShardFound found = (LocalShardFound)response;
LOG.debug("Local shard found {}", found.getPath());
return found.getPath();
} else if (response instanceof NotInitializedException) {
throw (NotInitializedException)response;
} else if (response instanceof LocalShardNotFound) {
throw new LocalShardNotFoundException(
String.format("Local shard for %s does not exist.", shardName));
}
throw new UnknownMessageException(String.format(
"FindLocalShard returned unkown response: %s", response));
}
}, getClientDispatcher());
}