Package org.gradle.launcher.daemon.protocol

Examples of org.gradle.launcher.daemon.protocol.CloseInput


            }
            dispatch.dispatch(new ForwardInput(idGenerator.generateId(), input.getBytes()));
        }

        public void endOfStream(@Nullable Throwable failure) {
            CloseInput message = new CloseInput(idGenerator.generateId());
            LOGGER.debug("Dispatching close input message: {}", message);
            dispatch.dispatch(message);
        }
View Full Code Here

TOP

Related Classes of org.gradle.launcher.daemon.protocol.CloseInput

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.