Package net.jxta.pipe

Examples of net.jxta.pipe.OutputPipe.send()


   
    public void sendOverPropagatedPipe(Message theMsg) {
        OutputPipe outputPipe = getPropagatedSingletonOutputPipe();
        if(outputPipe != null) {
            try {
                outputPipe.send(theMsg);
            } catch (IOException ex) {
                // FIXME evaluate log level
                if(_pipelogger.isLoggable(Level.INFO)) {
                    _pipelogger.log(Level.INFO, "Exception occurred sending message over propagated pipe" , ex);
                }        
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.