#
Junjie
7 天以前 141696efeb3598b2a8c62aada6e6b45734e56f11
src/main/java/com/zy/core/MainProcess.java
@@ -47,11 +47,16 @@
                    mainProcessPluginApi.run();
                    // 间隔
                    Thread.sleep(200);
                } catch (InterruptedException ie) {
                    Thread.currentThread().interrupt();
                    break;
                } catch (Exception e) {
                    e.printStackTrace();
                }
            }
        });
        thread.setName("MainProcess");
        thread.setDaemon(true);
        thread.start();
    }