Package org.cafesip.jiplet

Examples of org.cafesip.jiplet.JipletSignal


                        s.close();
                        break; // accept another connection
                    }
                   
                    // pass on the received message as a signal to the jiplet
                    JipletSignal signal = new JipletSignal();
                    signal.setEventObject(line);
                   
                    if (context.sendSignal(name, signal) == false)
                    {
                        JipletLogger.error("Error sending signal to the jiplet");
                    }                   
View Full Code Here

TOP

Related Classes of org.cafesip.jiplet.JipletSignal

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.