Examples of OperationService


Examples of org.waveprotocol.box.server.robots.operations.OperationService

   * @param operation the type of the operation to register for
   * @param service the {@link OperationService} to be registered
   */
  protected final void register(OperationType operation, OperationService service) {
    // Do a put first so we can make it use a concurrent map if needed.
    OperationService oldValue = operationMap.put(operation, service);
    if (oldValue != null) {
      LOG.warning("The OperationService for " + operation.name() + " was overwritten");
    }
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.