File: PooledSocket.as

package info (click to toggle)
node-node-forge 0.8.1~dfsg-1%2Bdeb10u1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 2,536 kB
  • sloc: javascript: 32,607; ansic: 229; python: 59; makefile: 26; xml: 7; sh: 6
file content (18 lines) | stat: -rw-r--r-- 334 bytes parent folder | download | duplicates (2)
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;
   }
}