Package org.terasology.utilities.concurrency

Examples of org.terasology.utilities.concurrency.ShutdownTask


        }

    }

    public void stopThreads() {
        commonThreadPool.shutdown(new ShutdownTask(), false);
    }
View Full Code Here


    }

    @Override
    public void finishSavingAndShutdown() {
        saveThreadManager.shutdown(new ShutdownTask(), true);
        checkSaveTransactionAndClearUpIfItIsDone();
    }
View Full Code Here

        startSaving();
    }

    private void waitForCompletionOfPreviousSave() {
        if (saveTransaction != null && saveTransaction.getResult() == null) {
            saveThreadManager.shutdown(new ShutdownTask(), true);
            saveThreadManager.restart();
        }
        checkSaveTransactionAndClearUpIfItIsDone();
    }
View Full Code Here

TOP

Related Classes of org.terasology.utilities.concurrency.ShutdownTask

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.