All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.testng.internal.thread.IAtomicInteger Maven / Gradle / Ivy

There is a newer version: 7.10.1
Show newest version
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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy