comparison tango/tango/net/cluster/model/IConsumer.d @ 132:1700239cab2e trunk

[svn r136] MAJOR UNSTABLE UPDATE!!! Initial commit after moving to Tango instead of Phobos. Lots of bugfixes... This build is not suitable for most things.
author lindquist
date Fri, 11 Jan 2008 17:57:40 +0100
parents
children
comparison
equal deleted inserted replaced
131:5825d48b27d1 132:1700239cab2e
1 /*******************************************************************************
2
3 copyright: Copyright (c) 2004 Kris Bell. All rights reserved
4
5 license: BSD style: $(LICENSE)
6
7 version: July 2004: Initial release
8
9 author: Kris
10
11 *******************************************************************************/
12
13 module tango.net.cluster.model.IConsumer;
14
15 /*******************************************************************************
16
17 Contract exposed by each cluster listener. This is what you are
18 handed back upon successful construction of a listener.
19
20 *******************************************************************************/
21
22 interface IConsumer
23 {
24 /***********************************************************************
25
26 Cancel the listener. No more events will be dispatched to
27 the associated ChannelListener.
28
29 ***********************************************************************/
30
31 void cancel();
32 }
33
34