本文整理匯總了Java中com.hazelcast.config.Config.setManagedContext方法的典型用法代碼示例。如果您正苦於以下問題:Java Config.setManagedContext方法的具體用法?Java Config.setManagedContext怎麽用?Java Config.setManagedContext使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類com.hazelcast.config.Config
的用法示例。
在下文中一共展示了Config.setManagedContext方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: addCommandExecutorConfiguration
import com.hazelcast.config.Config; //導入方法依賴的package包/類
/**
* Add configuration to the supplied {@link Config} to support the use of a {@link HazelcastCommandExecutor}.
* @param config The {@link Config} to configure.
* @return The updated {@link Config}.
*/
public Config addCommandExecutorConfiguration(Config config) {
SerializerConfig serializerConfig = new SerializerConfig()
.setImplementation(RemoteCommandSerialiser.using(
objectMapper,
CommandTypeMatcher.matchingAgainst(typeInfoMap)))
.setTypeClass(RemoteCommand.class);
ManagedContext managedContext = CommandProcessingManagedContext
.processingCommandsWith(dispatchingCommandProcessor);
config.getSerializationConfig().addSerializerConfig(serializerConfig);
config.setManagedContext(config.getManagedContext() == null
? managedContext
: CompositeManagedContext.of(managedContext, config.getManagedContext()));
config.addExecutorConfig(new ExecutorConfig(executorName, threadsPerNode));
return config;
}