org.testng.internal.thread.IAtomicInteger Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of testng Show documentation
Show all versions of testng Show documentation
Testing framework for Java
package org.testng.internal.thread;
import java.io.Serializable;
/**
* This class/interface
*/
public interface IAtomicInteger extends Serializable{
/**
* Get the current value.
* @return the current value
*/
int get();
/**
* Atomically increment by one the current value.
*
* @return the updated value
*/
int incrementAndGet();
}