W3cubDocs

/Haxe Flash

Socket

package flash.net

extends EventDispatcher

implements IDataInput, IDataOutput

extended by SecureSocket

Available on flash

Constructor

@:value({ port : 0 }) new (?host:String, port:Int = 0)

Variables

read only bytesAvailable:UInt

@:require(flash11) read only bytesPending:UInt

read only connected:Bool

endian:Endian

objectEncoding:UInt

@:require(flash10) timeout:UInt

Methods

close ():Void

connect (host:String, port:Int):Void

flush ():Void

readBoolean ():Bool

readByte ():Int

@:value({ length : 0, offset : 0 }) readBytes (bytes:ByteArray, offset:UInt = 0, length:UInt = 0):Void

readDouble ():Float

readFloat ():Float

readInt ():Int

readMultiByte (length:UInt, charSet:String):String

readObject ():Dynamic

readShort ():Int

readUTF ():String

readUTFBytes (length:UInt):String

readUnsignedByte ():UInt

readUnsignedInt ():UInt

readUnsignedShort ():UInt

writeBoolean (value:Bool):Void

writeByte (value:Int):Void

@:value({ length : 0, offset : 0 }) writeBytes (bytes:ByteArray, offset:UInt = 0, length:UInt = 0):Void

writeDouble (value:Float):Void

writeFloat (value:Float):Void

writeInt (value:Int):Void

writeMultiByte (value:String, charSet:String):Void

writeObject (object:Dynamic):Void

writeShort (value:Int):Void

writeUTF (value:String):Void

writeUTFBytes (value:String):Void

writeUnsignedInt (value:UInt):Void

© 2005–2018 Haxe Foundation
Licensed under a MIT license.
https://api.haxe.org/flash/net/Socket.html