Package com.amazonaws.services.kinesis.multilang.messages

Examples of com.amazonaws.services.kinesis.multilang.messages.CheckpointMessage


     *
     * @param sequenceNumber The sequence number that was checkpointed.
     * @param throwable The exception that was thrown by a checkpoint attempt. Null if one didn't occur.
     */
    Future<Boolean> writeCheckpointMessageWithError(String sequenceNumber, Throwable throwable) {
        return writeMessage(new CheckpointMessage(sequenceNumber, throwable));
    }
View Full Code Here

TOP

Related Classes of com.amazonaws.services.kinesis.multilang.messages.CheckpointMessage

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.