Hi,

I'm using apache tribes for messaging between nodes within a cluster. My implementation bases on the quickstart example that is part of the related documentation. At the moment there is Context Listener that starts the communication like this:

  myChannel = new GroupChannel();

    this.msgListener = msgListener;
    this.mbrListener = mbrListener;

    //attach the listeners to the channel
    myChannel.addMembershipListener(mbrListener);
    myChannel.addChannelListener(msgListener);

    //start the channel
    myChannel.start(Channel.DEFAULT);

This is a singleton instance and is used for sending messages the whole lifecycle of my webapplication. I don't like this singleton and I'm wondering if it is possible to start the channel everytime I need to send a message?

with kind regards
    Michael




---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org

Reply via email to