KLALB V3.6.0 写了一半
This commit is contained in:
@@ -84,8 +84,10 @@ public class StreamBridge extends Task{
|
||||
public void runAtNewThread() {
|
||||
runAtNewThread("StreamBridge thread");
|
||||
}
|
||||
public void runAtNewThread(String name) {
|
||||
ThreadTool.makeVThreadIfSupport(name, this).start();
|
||||
public Thread runAtNewThread(String name) {
|
||||
Thread t=ThreadTool.makeVThreadIfSupport(name, this);
|
||||
t.start();
|
||||
return t;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user