Examples of storeTraversalState()


Examples of com.google.enterprise.connector.traversal.TraversalStateStore.storeTraversalState()

  /** Test restartConnectorTraversal. */
  public void testRestartTraversal() throws Exception {
    TraversalStateStore store =
        instantiator.getTraversalStateStore(connectorName);
    store.storeTraversalState("checkpoint");
    assertEquals("checkpoint", store.getTraversalState());
    manager.restartConnectorTraversal(connectorName);
    assertNull(store.getTraversalState());
  }

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.