org.testng.internal.remote.SocketLinkedBlockingQueue 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.remote;
import java.net.Socket;
/**
* SocketLinkedBlockingQueue
is a wrapper on LinkedBlockingQueue so
* we may factor out code common to JDK14 and JDK5+ using different implementation
* of LinkedBlockingQueue
*
* @author cquezel
* @since 5.2
*/
public class SocketLinkedBlockingQueue extends java.util.concurrent.LinkedBlockingQueue
{
/**
*
*/
private static final long serialVersionUID = 4548450495806527985L;
// wrapper
}