#
Junjie
2024-10-18 33c638f4f7d49d92814a5d69cf51dca6026ced66
1
2
3
4
5
6
7
8
9
package com.zy.asrs.wcs.rcs.thread;
 
public interface ThreadHandler extends Runnable {
 
    boolean connect();
 
    void close();
 
}