Examples of ShutdownException


Examples of com.amazonaws.services.kinesis.clientlibrary.exceptions.ShutdownException

    public void setCheckpoint(String shardId, String checkpointValue, String concurrencyToken)
        throws KinesisClientLibException {
        try {
            boolean wasSuccessful = setCheckpoint(shardId, checkpointValue, UUID.fromString(concurrencyToken));
            if (!wasSuccessful) {
                throw new ShutdownException("Can't update checkpoint - instance doesn't hold the lease for this shard");
            }
        } catch (ProvisionedThroughputException e) {
            throw new ThrottlingException("Got throttled while updating checkpoint.", e);
        } catch (InvalidStateException e) {
            String message = "Unable to save checkpoint for shardId " + shardId;
View Full Code Here

Examples of org.apache.derby.iapi.error.ShutdownException

  public static ContextService getFactory() {
    ContextService csf = factory;

    if (csf == null)
      throw new ShutdownException();
    return csf;
  }
View Full Code Here

Examples of org.apache.derby.iapi.error.ShutdownException

  public static ContextService getFactory() {
    ContextService csf = factory;

    if (csf == null)
      throw new ShutdownException();
    return csf;
  }
View Full Code Here

Examples of org.apache.derby.iapi.error.ShutdownException

    source interrupted the thread.
  */
  private void checkInterrupt() {
    if (shutdown) {
      // system must have changed underneath us
      throw new ShutdownException();
    }
  }
View Full Code Here

Examples of org.apache.derby.iapi.error.ShutdownException

    source interrupted the thread.
  */
  private void checkInterrupt() {
    if (shutdown) {
      // system must have changed underneath us
      throw new ShutdownException();
    }
  }
View Full Code Here

Examples of org.apache.derby.iapi.error.ShutdownException

  public static ContextService getFactory() {
    ContextService csf = factory;

    if (csf == null)
      throw new ShutdownException();
    return csf;
  }
View Full Code Here

Examples of org.apache.derby.iapi.error.ShutdownException

  public static ContextService getFactory() {
    ContextService csf = factory;

    if (csf == null)
      throw new ShutdownException();
    return csf;
  }
View Full Code Here

Examples of org.apache.derby.iapi.error.ShutdownException

    source interrupted the thread.
  */
  private void checkInterrupt() {
    if (shutdown) {
      // system must have changed underneath us
      throw new ShutdownException();
    }
  }
View Full Code Here

Examples of org.apache.derby.iapi.error.ShutdownException

    source interrupted the thread.
  */
  private void checkInterrupt() {
    if (shutdown) {
      // system must have changed underneath us
      throw new ShutdownException();
    }
  }
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.