Package org.infoglue.cms.util

Examples of org.infoglue.cms.util.XMLNotificationWriter


        if(buffer==null)
        {
            buffer = new StringWriter();
            buffer.write("<changeNotifications>");
            changeNotificationBuffer.put(id, buffer);
        XMLNotificationWriter streamWriter = new XMLNotificationWriter(buffer, ENCODING, "", null, true, true);
            ChangeNotificationController.getInstance().registerListener(streamWriter);
        }

        buffer.write("</changeNotifications>");
        try
View Full Code Here


    getResponse().flushBuffer();
    Thread thread = Thread.currentThread();
    OutputStream out = getResponse().getOutputStream();
    InputStream in = getRequest().getInputStream();
   
    XMLNotificationWriter streamWriter = new XMLNotificationWriter(new OutputStreamWriter(out), ENCODING, boundary, thread, true, false);
      
    logger.info("Notification stream listen started from:"  + remoteId);
        ChangeNotificationController.getInstance().registerListener(streamWriter);
       
        Thread streamWriterThread = new Thread(streamWriter);
View Full Code Here

TOP

Related Classes of org.infoglue.cms.util.XMLNotificationWriter

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.