#
Junjie
1 天以前 0c5a58771fcf86ad0b562829fbfa440da9392703
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();
    }