Package com.sun.sgs.service

Examples of com.sun.sgs.service.Service.ready()


     * @throws Exception if there is any failure during notification
     */
    void notifyReady() throws Exception {
        for (Object service : serviceComponents) {
            Service s = (Service) service;
            s.ready();

            if (logger.isLoggable(Level.CONFIG)) {
                logger.log(Level.CONFIG, "The {0} is ready", s.getName());
            }
        }
View Full Code Here


     * @throws Exception if there is any failure during notification
     */
    void notifyReady() throws Exception {
        for (Object service : serviceComponents) {
            Service s = (Service) service;
            s.ready();

            if (logger.isLoggable(Level.CONFIG)) {
                logger.log(Level.CONFIG, "The {0} is ready", s.getName());
            }
        }
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.