auxiliary-builds/javagroups/src/java/org/apache/commons/jcs/auxiliary/javagroups/JavaGroupsCache.java [91:117]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        this.channel = channel;

        this.getFromPeers = getFromPeers;

        // The adapter listens to the channel and fires MessageListener events
        // on this object.

        dispatcher = new MessageDispatcher( channel, null, this, this );

        // Connect channel to the 'group' for our region name

        channel.setOpt( Channel.LOCAL, Boolean.FALSE );

        channel.connect( cacheName );

        // If all the above succeed, the cache is now alive.

        this.status = CacheStatus.ALIVE;

        log.info( "Initialized for cache: " + cacheName );
    }

    public void send( ICacheElement<K, V> element, int command )
    {
        Request request = new Request( element, command );

        try
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



auxiliary-builds/jdk14/src/java/org/apache/commons/jcs/auxiliary/javagroups/JavaGroupsCache.java [94:120]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        this.channel = channel;

        this.getFromPeers = getFromPeers;

        // The adapter listens to the channel and fires MessageListener events
        // on this object.

        dispatcher = new MessageDispatcher( channel, null, this, this );

        // Connect channel to the 'group' for our region name

        channel.setOpt( Channel.LOCAL, Boolean.FALSE );

        channel.connect( cacheName );

        // If all the above succeed, the cache is now alive.

        this.status = CacheStatus.ALIVE;

        log.info( "Initialized for cache: " + cacheName );
    }

    public void send( ICacheElement<K, V> element, int command )
    {
        Request request = new Request( element, command );

        try
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



