Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

这个线程在做什么动作,有什么用处? #8

Open
BennyChang0 opened this issue Dec 4, 2018 · 0 comments
Open

这个线程在做什么动作,有什么用处? #8

BennyChang0 opened this issue Dec 4, 2018 · 0 comments

Comments

@BennyChang0
Copy link

void runCheckThread(){

    ScheduledExecutorService executorService = Executors.newSingleThreadScheduledExecutor(new VIThreadFactory("vi-envIgnite"));
    executorService.scheduleAtFixedRate(new Runnable() {
        @Override
        public void run() {
            try{
                if(waitTimes == 0 || waitTimes >MAXTIMES){

                    if(waitTimes != 0){
                        waitTimes = 0;
                    }
                    EnFactory.getEnApp().register();
                }
            }
            catch (Throwable e){
                logger.warn("self registration failed!", e);
            }finally {
                waitTimes++;
            }

        }
    }, 0, DEFAULTINTERVAL, TimeUnit.SECONDS);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant