Example usage for org.apache.commons.net.nntp NNTPCommand STAT

List of usage examples for org.apache.commons.net.nntp NNTPCommand STAT

Introduction

In this page you can find the example usage for org.apache.commons.net.nntp NNTPCommand STAT.

Prototype

int STAT

To view the source code for org.apache.commons.net.nntp NNTPCommand STAT.

Click Source Link

Usage

From source file:com.almarsoft.GroundhogReader.lib.NNTPExtended.java

public int stat(long articleNumber) throws IOException {
    return sendCommand(NNTPCommand.STAT, Long.toString(articleNumber));
}