01: package vicazh.hyperpool.stream;
02:
03: import java.io.*;
04:
05: /**
06: * The terminator
07: *
08: * @author Victor Zhigunov
09: * @version 0.4.0
10: */
11: public class TerminatorService extends Service implements
12: TerminatorServiceMBean {
13: public OutputStream get(OutputStream outputstream)
14: throws IOException {
15: throw new BreakException();
16: }
17: }
|