com.ning.api.client.action.Counter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ning-api-java Show documentation
Show all versions of ning-api-java Show documentation
Java client library for accessing Ning external API
package com.ning.api.client.action;
import com.ning.api.client.NingClientException;
/**
* Simple common API for all types of counter objects; does not
* include per-content-type configuration methods.
*/
public interface Counter
{
/**
* Method to call to actually execute call by sending request to
* service.
*/
public int count() throws NingClientException;
}