Package com.amazonaws.services.kinesis.clientlibrary.exceptions

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


            } else {
                String message =
                        String.format("Was asked to checkpoint at %s but no checkpointer was provided for shard %s",
                                sequenceNumber, shardId);
                LOG.error(message);
                return this.messageWriter.writeCheckpointMessageWithError(sequenceNumber, new InvalidStateException(
                        message));
            }
        } catch (Throwable t) {
            return this.messageWriter.writeCheckpointMessageWithError(sequenceNumber, t);
        }
View Full Code Here

TOP

Related Classes of com.amazonaws.services.kinesis.clientlibrary.exceptions.InvalidStateException

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.