Package com.linkedin.databus.core

Examples of com.linkedin.databus.core.InvalidCheckpointException


        // make sure we are in the expected mode -- sanity checks
        Checkpoint ckpt = _checkpoint;
        if (ckpt.getConsumptionMode() != DbusClientMode.BOOTSTRAP_SNAPSHOT)
        {
          throw new InvalidCheckpointException("TargetScnResponseProcessor:"
                                     + " expecting in client mode: " + DbusClientMode.BOOTSTRAP_SNAPSHOT,
                                     ckpt);
        }
        else if (! ckpt.isSnapShotSourceCompleted())
        {
          throw new InvalidCheckpointException("TargetScnResponseProcessor: current snapshot source not completed",
                                               ckpt);
        }

        LOG.info("Target SCN "
                 + targetScn
View Full Code Here

TOP

Related Classes of com.linkedin.databus.core.InvalidCheckpointException

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.