Home | History | Annotate | Download | only in remote
      1 package org.testng.internal.remote;
      2 
      3 import java.net.Socket;
      4 
      5 /**
      6  * <code>SocketLinkedBlockingQueue</code> is a wrapper on LinkedBlockingQueue so
      7  * we may factor out code common to JDK14 and JDK5+ using different implementation
      8  * of LinkedBlockingQueue
      9  *
     10  * @author cquezel
     11  * @since 5.2
     12  */
     13 public class SocketLinkedBlockingQueue extends java.util.concurrent.LinkedBlockingQueue<Socket>
     14 {
     15 
     16   /**
     17    *
     18    */
     19   private static final long serialVersionUID = 4548450495806527985L;
     20   // wrapper
     21 }
     22