01: package vicazh.hyperpool.stream.net.http;
02:
03: import java.util.*;
04: import vicazh.hyperpool.*;
05:
06: /**
07: * The reconnect service interface
08: *
09: * @author Victor Zhigunov
10: * @version 0.4.0
11: */
12: public interface ReconnectServiceMBean extends ServiceMBean {
13: static final String OPTIONS = "options";
14: static final String RECONNECT = "reconnect";
15:
16: List<ReconnectItem> getItems();
17: }
|