Package intf.mobile.storage

Examples of intf.mobile.storage.IndividualStorageService.storeState()


    // send the state of the component to the Storage Service
    IndividualStorageService ss = (IndividualStorageService)
      URLToReference.createReference(individualStorageServiceURL,
             IndividualStorageService.class.getName());
    return ss.storeState(xmlState);
  }

  /**
   * Request to append component state to a distributed checkpoint
   * @param individualStorageServiceURL the URL of the individual storage service
View Full Code Here


     
      // send the state of the component to the Storage Service
      IndividualStorageService ss = (IndividualStorageService)
        URLToReference.createReference(individualStorageServiceURL,
               IndividualStorageService.class.getName());
      storageID = ss.storeState(xmlState);
    } catch (Exception e) {
      logger.severe("Exception while creating/storing checkpoint", e);
      try {
        // send an exception message to the coordinator
        AppCoordinatorCallback coord = (AppCoordinatorCallback)
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.