com.hazelcast.instance.Node.getSerializationService()方法的使用及代码示例

x33g5p2x  于2022-01-25 转载在 其他  
字(8.9k)|赞(0)|评价(0)|浏览(257)

本文整理了Java中com.hazelcast.instance.Node.getSerializationService()方法的一些代码示例,展示了Node.getSerializationService()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Node.getSerializationService()方法的具体详情如下:
包路径:com.hazelcast.instance.Node
类名称:Node
方法名:getSerializationService

Node.getSerializationService介绍

暂无

代码示例

代码示例来源:origin: hazelcast/hazelcast-jet

  1. @Override
  2. public InternalSerializationService getSerializationService() {
  3. return node.getSerializationService();
  4. }

代码示例来源:origin: com.hazelcast/hazelcast-all

  1. @Override
  2. public InternalSerializationService getSerializationService() {
  3. return node.getSerializationService();
  4. }

代码示例来源:origin: hazelcast/hazelcast-jet

  1. @Override
  2. public InternalSerializationService getSerializationService() {
  3. return node.getSerializationService();
  4. }

代码示例来源:origin: com.hazelcast/hazelcast-all

  1. @Override
  2. public InternalSerializationService getSerializationService() {
  3. return node.getSerializationService();
  4. }

代码示例来源:origin: hazelcast/hazelcast-jet

  1. @Override
  2. public byte[] toByteArray(Object value) {
  3. Data data = node.getSerializationService().toData(value);
  4. return data.toByteArray();
  5. }

代码示例来源:origin: hazelcast/hazelcast-jet

  1. /**
  2. * This method has a direct dependency on how objects are serialized.
  3. * If the stream format is changed, this extraction method must be changed as well.
  4. * <p>
  5. * It makes an assumption that the callId is the first long field in the serialized operation.
  6. */
  7. private long extractOperationCallId(Data data) throws IOException {
  8. ObjectDataInput input = ((SerializationServiceV1) node.getSerializationService())
  9. .initDataSerializableInputAndSkipTheHeader(data);
  10. return input.readLong();
  11. }

代码示例来源:origin: hazelcast/hazelcast-jet

  1. @Override
  2. public void setNode(Node node) {
  3. ManagedContext managedContext = node.getSerializationService().getManagedContext();
  4. managedContext.initialize(task);
  5. }

代码示例来源:origin: com.hazelcast/hazelcast-all

  1. @Override
  2. public byte[] toByteArray(Object value) {
  3. Data data = node.getSerializationService().toData(value);
  4. return data.toByteArray();
  5. }

代码示例来源:origin: com.hazelcast/hazelcast-all

  1. /**
  2. * This method has a direct dependency on how objects are serialized.
  3. * If the stream format is changed, this extraction method must be changed as well.
  4. * <p>
  5. * It makes an assumption that the callId is the first long field in the serialized operation.
  6. */
  7. private long extractOperationCallId(Data data) throws IOException {
  8. ObjectDataInput input = ((SerializationServiceV1) node.getSerializationService())
  9. .initDataSerializableInputAndSkipTheHeader(data);
  10. return input.readLong();
  11. }

代码示例来源:origin: com.hazelcast/hazelcast-all

  1. @Override
  2. public void setNode(Node node) {
  3. ManagedContext managedContext = node.getSerializationService().getManagedContext();
  4. managedContext.initialize(task);
  5. }

代码示例来源:origin: hazelcast/hazelcast-jet

  1. protected AbstractMessageTask(ClientMessage clientMessage, Node node, Connection connection) {
  2. this.clientMessage = clientMessage;
  3. this.logger = node.getLogger(getClass());
  4. this.node = node;
  5. this.nodeEngine = node.nodeEngine;
  6. this.serializationService = node.getSerializationService();
  7. this.connection = connection;
  8. this.clientEngine = node.clientEngine;
  9. this.endpointManager = clientEngine.getEndpointManager();
  10. this.endpoint = initEndpoint();
  11. }

代码示例来源:origin: com.hazelcast/hazelcast-all

  1. protected AbstractMessageTask(ClientMessage clientMessage, Node node, Connection connection) {
  2. this.clientMessage = clientMessage;
  3. this.logger = node.getLogger(getClass());
  4. this.node = node;
  5. this.nodeEngine = node.nodeEngine;
  6. this.serializationService = node.getSerializationService();
  7. this.connection = connection;
  8. this.clientEngine = node.clientEngine;
  9. this.endpointManager = clientEngine.getEndpointManager();
  10. this.endpoint = initEndpoint();
  11. }

代码示例来源:origin: hazelcast/hazelcast-code-samples

  1. static MemoryStats getMemoryStats(HazelcastInstance hz) {
  2. // use this method or another way for getting "Node" from a "HazelcastInstance"
  3. Node node = getNode(hz);
  4. if (node != null) {
  5. EnterpriseSerializationService serializationService =
  6. (EnterpriseSerializationService) node.getSerializationService();
  7. HazelcastMemoryManager memoryManager = serializationService.getMemoryManager();
  8. return memoryManager.getMemoryStats();
  9. } else {
  10. return new DefaultMemoryStats();
  11. }
  12. }
  13. }

代码示例来源:origin: hazelcast/hazelcast-jet

  1. @Override
  2. public Object initialize(Object obj) {
  3. if (obj instanceof HazelcastInstanceAware) {
  4. ((HazelcastInstanceAware) obj).setHazelcastInstance(instance);
  5. }
  6. if (obj instanceof NodeAware) {
  7. ((NodeAware) obj).setNode(instance.node);
  8. }
  9. if (obj instanceof SerializationServiceAware) {
  10. ((SerializationServiceAware) obj).setSerializationService(instance.node.getSerializationService());
  11. }
  12. if (hasExternalContext) {
  13. return externalContext.initialize(obj);
  14. }
  15. return obj;
  16. }
  17. }

代码示例来源:origin: com.hazelcast/hazelcast-all

  1. @Override
  2. public Object initialize(Object obj) {
  3. if (obj instanceof HazelcastInstanceAware) {
  4. ((HazelcastInstanceAware) obj).setHazelcastInstance(instance);
  5. }
  6. if (obj instanceof NodeAware) {
  7. ((NodeAware) obj).setNode(instance.node);
  8. }
  9. if (obj instanceof SerializationServiceAware) {
  10. ((SerializationServiceAware) obj).setSerializationService(instance.node.getSerializationService());
  11. }
  12. if (hasExternalContext) {
  13. return externalContext.initialize(obj);
  14. }
  15. return obj;
  16. }
  17. }

代码示例来源:origin: hazelcast/hazelcast-jet

  1. private MulticastService(Node node, MulticastSocket multicastSocket)
  2. throws Exception {
  3. this.logger = node.getLogger(MulticastService.class.getName());
  4. this.node = node;
  5. this.multicastSocket = multicastSocket;
  6. NodeIOService nodeIOService = new NodeIOService(node, node.nodeEngine);
  7. this.inputProcessor = node.getNodeExtension().createMulticastInputProcessor(nodeIOService);
  8. this.outputProcessor = node.getNodeExtension().createMulticastOutputProcessor(nodeIOService);
  9. this.sendOutput = node.getSerializationService().createObjectDataOutput(SEND_OUTPUT_SIZE);
  10. Config config = node.getConfig();
  11. MulticastConfig multicastConfig = config.getNetworkConfig().getJoin().getMulticastConfig();
  12. this.datagramPacketSend = new DatagramPacket(new byte[0], 0, InetAddress.getByName(multicastConfig.getMulticastGroup()),
  13. multicastConfig.getMulticastPort());
  14. this.datagramPacketReceive = new DatagramPacket(new byte[DATAGRAM_BUFFER_SIZE], DATAGRAM_BUFFER_SIZE);
  15. Set<String> trustedInterfaces = multicastConfig.getTrustedInterfaces();
  16. ILogger logger = node.getLogger(JoinMessageTrustChecker.class);
  17. joinMessageTrustChecker = new JoinMessageTrustChecker(trustedInterfaces, logger);
  18. }

代码示例来源:origin: com.hazelcast/hazelcast-all

  1. private MulticastService(Node node, MulticastSocket multicastSocket)
  2. throws Exception {
  3. this.logger = node.getLogger(MulticastService.class.getName());
  4. this.node = node;
  5. this.multicastSocket = multicastSocket;
  6. NodeIOService nodeIOService = new NodeIOService(node, node.nodeEngine);
  7. this.inputProcessor = node.getNodeExtension().createMulticastInputProcessor(nodeIOService);
  8. this.outputProcessor = node.getNodeExtension().createMulticastOutputProcessor(nodeIOService);
  9. this.sendOutput = node.getSerializationService().createObjectDataOutput(SEND_OUTPUT_SIZE);
  10. Config config = node.getConfig();
  11. MulticastConfig multicastConfig = config.getNetworkConfig().getJoin().getMulticastConfig();
  12. this.datagramPacketSend = new DatagramPacket(new byte[0], 0, InetAddress.getByName(multicastConfig.getMulticastGroup()),
  13. multicastConfig.getMulticastPort());
  14. this.datagramPacketReceive = new DatagramPacket(new byte[DATAGRAM_BUFFER_SIZE], DATAGRAM_BUFFER_SIZE);
  15. Set<String> trustedInterfaces = multicastConfig.getTrustedInterfaces();
  16. ILogger logger = node.getLogger(JoinMessageTrustChecker.class);
  17. joinMessageTrustChecker = new JoinMessageTrustChecker(trustedInterfaces, logger);
  18. }

代码示例来源:origin: com.hazelcast/hazelcast-all

  1. public ClientEngineImpl(Node node) {
  2. this.logger = node.getLogger(ClientEngine.class);
  3. this.node = node;
  4. this.serializationService = node.getSerializationService();
  5. this.nodeEngine = node.nodeEngine;
  6. this.endpointManager = new ClientEndpointManagerImpl(nodeEngine);
  7. this.executor = newClientExecutor();
  8. this.queryExecutor = newClientQueryExecutor();
  9. this.clientManagementExecutor = newClientsManagementExecutor();
  10. this.messageTaskFactory = new CompositeMessageTaskFactory(nodeEngine);
  11. this.clientExceptions = initClientExceptionFactory();
  12. this.endpointRemoveDelaySeconds = node.getProperties().getInteger(GroupProperty.CLIENT_ENDPOINT_REMOVE_DELAY_SECONDS);
  13. this.partitionListenerService = new ClientPartitionListenerService(nodeEngine);
  14. }

代码示例来源:origin: hazelcast/hazelcast-jet

  1. public ClientEngineImpl(Node node) {
  2. this.logger = node.getLogger(ClientEngine.class);
  3. this.node = node;
  4. this.serializationService = node.getSerializationService();
  5. this.nodeEngine = node.nodeEngine;
  6. this.endpointManager = new ClientEndpointManagerImpl(nodeEngine);
  7. this.executor = newClientExecutor();
  8. this.queryExecutor = newClientQueryExecutor();
  9. this.blockingExecutor = newBlockingExecutor();
  10. this.clientManagementExecutor = newClientsManagementExecutor();
  11. this.messageTaskFactory = new CompositeMessageTaskFactory(nodeEngine);
  12. this.clientExceptions = initClientExceptionFactory();
  13. this.endpointRemoveDelaySeconds = node.getProperties().getInteger(GroupProperty.CLIENT_ENDPOINT_REMOVE_DELAY_SECONDS);
  14. this.partitionListenerService = new ClientPartitionListenerService(nodeEngine);
  15. }

代码示例来源:origin: hazelcast/hazelcast-jet

  1. this.node = node;
  2. try {
  3. this.serializationService = node.getSerializationService();
  4. this.loggingService = node.loggingService;
  5. this.logger = node.getLogger(NodeEngine.class.getName());

相关文章