Package org.jnode.nntp.event

Examples of org.jnode.nntp.event.PostStartEvent


        Collection<String> response = Lists.newLinkedList();

        if (params.isEmpty()) {
            // start posting
            Notifier.INSTANSE.notify(new PostStartEvent());
            response.add(NntpResponse.Post.SEND_ARTICLE_TO_BE_POSTED);
        } else {
            // end posting
            Notifier.INSTANSE.notify(new PostEndEvent());
            response.add(NntpResponse.Post.ARTICLE_RECEIVED_OK);
View Full Code Here

TOP

Related Classes of org.jnode.nntp.event.PostStartEvent

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.