Package org.apache.jcs.auxiliary.lateral.socket.tcp.discovery

Examples of org.apache.jcs.auxiliary.lateral.socket.tcp.discovery.UDPDiscoveryService


     * @return null if none is created.
     */
    private UDPDiscoveryService createDiscoveryService( ITCPLateralCacheAttributes lac, LateralCacheNoWaitFacade lcnwf,
                                                       ICompositeCacheManager cacheMgr )
    {
        UDPDiscoveryService discovery = null;

        // create the UDP discovery for the TCP lateral
        if ( lac.isUdpDiscoveryEnabled() )
        {
            // need a factory for this so it doesn't
            // get dereferenced, also we don't want one for every region.
            discovery = UDPDiscoveryManager.getInstance().getService( lac, cacheMgr );

            discovery.addNoWaitFacade( lcnwf, lac.getCacheName() );

            if ( log.isInfoEnabled() )
            {
                log.info( "Created UDPDiscoveryService for TCP lateral cache." );
            }
View Full Code Here

TOP

Related Classes of org.apache.jcs.auxiliary.lateral.socket.tcp.discovery.UDPDiscoveryService

Copyright © 2018 www.massapicom. 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.