Package org.jboss.as.server.mgmt.ServerUpdateController

Examples of org.jboss.as.server.mgmt.ServerUpdateController.ServerUpdateCommitHandler


            List<ResultHandler<?, Void>> results = new ArrayList<ResultHandler<?, Void>>(updates.size());

            final CountDownLatch latch = new CountDownLatch(1);
            final ServerUpdateController controller = new ServerUpdateController(serverController.getServerModel(),
                    serviceContainer, executor,
                    new ServerUpdateCommitHandler() {
                        public void handleUpdateCommit(ServerUpdateController controller, Status priorStatus) {
                            configurationPersister.configurationModified();
                            latch.countDown();
                        }
                    }, true, ! preventShutdown);
View Full Code Here

TOP

Related Classes of org.jboss.as.server.mgmt.ServerUpdateController.ServerUpdateCommitHandler

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.