Package org.infinispan.server.websocket.configuration

Examples of org.infinispan.server.websocket.configuration.WebSocketServerConfigurationBuilder


   protected void performRuntime(OperationContext context, ModelNode operation, ModelNode model, ServiceVerificationHandler verificationHandler,
         List<ServiceController<?>> newControllers) throws OperationFailedException {
      // Read the full model
      ModelNode config = Resource.Tools.readModel(context.readResource(PathAddress.EMPTY_ADDRESS));
      // Create the builder
      WebSocketServerConfigurationBuilder configurationBuilder = new WebSocketServerConfigurationBuilder();
      this.configureProtocolServer(configurationBuilder, config);
      // Create the service
      final ProtocolServerService service = new ProtocolServerService(getServiceName(operation), WebSocketServer.class, configurationBuilder);

      // Setup the various dependencies with injectors and install the service
View Full Code Here

TOP

Related Classes of org.infinispan.server.websocket.configuration.WebSocketServerConfigurationBuilder

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.