summaryrefslogtreecommitdiff
path: root/school/node_modules/node-forge/flash/PooledSocket.as
blob: 15e3ae46a7d49132ad11f8a7972b0fbbd62b9e64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 * Copyright (c) 2009 Digital Bazaar, Inc. All rights reserved.
 * 
 * @author Dave Longley
 */
package
{
   import flash.net.Socket;
   
   /**
    * A helper class that contains the ID for a Socket.
    */
   public class PooledSocket extends Socket
   {
      // the ID in the related socket pool
      public var id:String;
   }
}