Package io.reactivex.netty.slotting

Examples of io.reactivex.netty.slotting.SlotAssignment


    }

    if (event.getType() == RemoteRxEvent.Type.subscribed){
      SlottingStrategy slottingStrategy = config.getSlottingStrategy();
      slottingStrategyReference.setValue(slottingStrategy);
      SlotAssignment slotAssignment = slottingStrategy.assignSlot(connection);
      if (slotAssignment.isAssigned()){
        subscribe(unsubscribeCallbackReference, event, connection, config, slotAssignment);
        serverMetrics.incrementSubscribedCount();
        logger.debug("Connection: "+connection.toString()+" subscribed to observable: "+observableName);
      }else{
        return Observable.error(new RemoteObservableException("Slot could not be assigned for connection."));
View Full Code Here

TOP

Related Classes of io.reactivex.netty.slotting.SlotAssignment

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.