Package org.apache.commons.net.nntp

Examples of org.apache.commons.net.nntp.ArticlePointer


     * @return The last id value fetched.
     */
    private int fetchAllStoriesLaterThan(int articleNum, String groupName) {

        Reader storyReader = null;
        ArticlePointer aPointer = new ArticlePointer();
        String fileName = null;

        try {
            this.nntpClient.selectArticle(articleNum, aPointer);

View Full Code Here


     * @return The ID of the last article retrieved.
     */
    private int fetchStoriesBeginningWithId(int articleNum, String groupName) {

        Reader storyReader = null;
        ArticlePointer aPointer = new ArticlePointer();
        String fileName = null;

        try {
            this.nntpClient.selectArticle(articleNum, aPointer);

View Full Code Here

TOP

Related Classes of org.apache.commons.net.nntp.ArticlePointer

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.