Package com.linkedin.parseq.internal

Examples of com.linkedin.parseq.internal.SerialExecutionException


    @Override
    public void rejectedExecution(Throwable error)
    {
      final String msg = "Serial executor loop failed for plan: " + _task.getName();
      final SerialExecutionException ex = new SerialExecutionException(msg, error);
      final boolean wasCancelled = _task.cancel(ex);
      LOG.error(msg + ". The plan was " + (wasCancelled ? "" : "not ") + "cancelled.", ex);
    }
View Full Code Here

TOP

Related Classes of com.linkedin.parseq.internal.SerialExecutionException

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.