#
Junjie
2025-03-14 66c8b4e8c8abdb1670372af44b5c9f0cfb39c5cc
1
2
3
4
5
6
7
8
9
package com.zy.core;
 
public interface ThreadHandler extends Runnable {
 
    boolean connect();
 
    void close();
 
}