use of org.smartdata.protocol.SmartClientProtocol in project SSM by Intel-bigdata.
the class SmartClient method close.
@Override
public void close() {
if (running) {
running = false;
for (SmartClientProtocol server : serverQue) {
RPC.stopProxy(server);
}
serverQue = null;
}
}
Aggregations