Package org.apache.hadoop.hbase.executor.HBaseExecutorService

Examples of org.apache.hadoop.hbase.executor.HBaseExecutorService.HBaseExecutorServiceType


  /**
   * Submits this event object to the correct executor service. This is causes
   * this object to get executed by the correct ExecutorService.
   */
  public void submit() {
    HBaseExecutorServiceType serviceType = getEventHandlerName();
    if(serviceType == null) {
      throw new RuntimeException("Event " + eventType + " not handled on this server " + serverName);
    }
    serviceType.getExecutor(serverName).submit(this);
  }
View Full Code Here

TOP

Related Classes of org.apache.hadoop.hbase.executor.HBaseExecutorService.HBaseExecutorServiceType

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.