Package com.sun.sgs.service

Examples of com.sun.sgs.service.WatchdogService.reportFailure()


            return svc.isLocalNodeAlive();
        }

        public void reportLocalFailure() throws IOException {
            WatchdogService svc = txnProxy.getService(WatchdogService.class);
            svc.reportFailure(
    txnProxy.getService(DataService.class).getLocalNodeId(),
    this.getClass().getName());
        }

        public void reportRemoteFailure(long nodeId) throws IOException {
View Full Code Here


    this.getClass().getName());
        }

        public void reportRemoteFailure(long nodeId) throws IOException {
            WatchdogService svc = txnProxy.getService(WatchdogService.class);
            svc.reportFailure(nodeId, this.getClass().getName());
        }
    }
   
    private static class MyRuntimeException extends RuntimeException {
  private static final long serialVersionUID = 1L;
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.