01: package biz.hammurapi.web.mda;
02:
03: import java.io.IOException;
04:
05: /**
06: * Creates channels and flushes them to their "final" destinations.
07: * @author Pavel
08: */
09: public interface RootChannel extends Channel {
10:
11: /**
12: * Outputs all channels to their destinations.
13: * Channels shall not be used afer flush() is invoked.
14: */
15: void flush() throws IOException;
16:
17: }
|