KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > messaging > channel > plugins > handler > SharedChannel


1 /*
2  * JBoss, the OpenSource J2EE webOS
3  *
4  * Distributable under LGPL license.
5  * See terms of license at gnu.org.
6  */

7 package org.jboss.messaging.channel.plugins.handler;
8
9 import org.jboss.messaging.interfaces.Consumer;
10
11 /**
12  * A shared channel has multiple subscribers
13  *
14  * @author <a HREF="mailto:adrian@jboss.org">Adrian Brock</a>
15  * @version $Revision: 1.1 $
16  */

17 public class SharedChannel extends AbstractChannel
18 {
19    // Constants -----------------------------------------------------
20

21    // Attributes ----------------------------------------------------
22

23    // Static --------------------------------------------------------
24

25    // Constructors --------------------------------------------------
26

27    /**
28     * Create a new SharedChannel.
29     *
30     * @param consumer the consumer
31     * @param handler the handler
32     */

33    public SharedChannel(Consumer consumer, SharedChannelHandler handler)
34    {
35       super(consumer, handler);
36    }
37    
38    // Public --------------------------------------------------------
39

40    // Protected -----------------------------------------------------
41

42    // Package Private -----------------------------------------------
43

44    // Private -------------------------------------------------------
45

46    // Inner Classes -------------------------------------------------
47
}
48
Popular Tags