activeio-core/src/main/java/org/apache/activeio/xnet/ServiceLogger.java [104:125]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public void init(Properties props) throws Exception {
        next.init(props);
    }

    public void start() throws ServiceException {
        next.start();
    }

    public void stop() throws ServiceException {
        next.stop();
    }

    public String getName() {
        return next.getName();
    }

    public String getIP() {
        return next.getIP();
    }

    public int getPort() {
        return next.getPort();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



activeio-core/src/main/java/org/apache/activeio/xnet/ServicePool.java [107:150]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public void init(Properties props) throws Exception {
        // Do our stuff
        
        // Then call the next guy
        next.init(props);
    }

    public void start() throws ServiceException {
        // Do our stuff
        
        // Then call the next guy
        next.start();
    }

    public void stop() throws ServiceException {
        // Do our stuff
        
        // Then call the next guy
        next.stop();
    }


    /**
     * Gets the name of the service.
     * Used for display purposes only
     */
    public String getName() {
        return next.getName();
    }

    /**
     * Gets the ip number that the
     * daemon is listening on.
     */
    public String getIP() {
        return next.getIP();
    }

    /**
     * Gets the port number that the
     * daemon is listening on.
     */
    public int getPort() {
        return next.getPort();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



