01: package vicazh.hyperpool.stream;
02:
03: import vicazh.hyperpool.*;
04:
05: /**
06: * The speed service interface
07: *
08: * @author Victor Zhigunov
09: * @version 0.4.0
10: */
11: public interface SpeedServiceMBean extends ServiceMBean {
12: static final String CLIENTACTION = "clientaction";
13:
14: static final String SERVERACTION = "serveraction";
15:
16: static final String CLIENT = "client";
17:
18: static final String SERVER = "server";
19: }
|