Examples of AllProceduresEndedEvent


Examples of com.wordpress.salaboy.model.events.AllProceduresEndedEvent

        //I should have one task here, that has been created by the specific procedure started
        doGarageTask();

        Thread.sleep(3000);
        // I can asume that all the procedures are ended, we need to delegate this to the external component
        AllProceduresEndedEvent allProceduresEndedEvent = new AllProceduresEndedEvent(null, new ArrayList<String>());
        GenericEmergencyProcedureImpl.getInstance().allProceduresEnededNotification(allProceduresEndedEvent);
        // We should see the report in the console
        Thread.sleep(10000);

    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.