Package org.jboss.as.protocol.mgmt

Examples of org.jboss.as.protocol.mgmt.ActiveOperation


        private HostControllerServerHandler(final ModelController controller, final ExecutorService executorService) {
            super(controller, executorService);
        }

        protected AsyncFuture<Void> executeRegistrationRequest(final Channel channel, final ManagementRequest request, final StartContext callback) {
            final ActiveOperation support = super.registerActiveOperation(null, new ActiveOperation.CompletedCallback<Void>() {
                @Override
                public void completed(Void result) {
                    callback.complete();
                }
View Full Code Here

TOP

Related Classes of org.jboss.as.protocol.mgmt.ActiveOperation

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.