All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.drools.grid.io.impl.ConversationManagerImpl Maven / Gradle / Ivy

There is a newer version: 5.6.0.Final
Show newest version
package org.drools.grid.io.impl;

import java.net.InetSocketAddress;
import java.util.concurrent.atomic.AtomicLong;

import org.drools.SystemEventListener;
import org.drools.grid.Grid;
import org.drools.grid.io.Connector;
import org.drools.grid.io.ConnectorFactoryService;
import org.drools.grid.io.Conversation;
import org.drools.grid.io.ConversationManager;
import org.drools.grid.io.IoWriter;
import org.drools.grid.io.MessageReceiverHandler;

public class ConversationManagerImpl
    implements
    ConversationManager {
    private SystemEventListener systemEventListener;

    private AtomicLong          conversationIdCounter;

    private Grid grid;
    
    public ConversationManagerImpl(Grid grid,
                                   SystemEventListener systemEventListener) {
        this.conversationIdCounter = new AtomicLong();
        this.systemEventListener = systemEventListener;
        this.grid = grid;
    }

    public Conversation startConversation(String senderId,
                                          InetSocketAddress address,
                                          String recipientId) {
        RequestResponseDispatchListener dispathListener = new RequestResponseDispatchListener();
        ConnectorFactoryService cfs = this.grid.get( ConnectorFactoryService.class );
        if ( cfs == null ) {
            throw new RuntimeException( "Unable to resolve ConnectorFactoryService" );
        }
        
        Connector conn = cfs.newConnector();
        IoWriter writer = conn.open( address,
                                     dispathListener,
                                     systemEventListener );
        return new ConversationImpl( conn,
                                     Long.toString( this.conversationIdCounter.incrementAndGet() ),
                                     senderId,
                                     recipientId,
                                     dispathListener,
                                     writer,
                                     this );
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy