Package | com.demonsters.debugger |
Class | public class MonsterDebuggerData |
Inheritance | MonsterDebuggerData ![]() |
Property | Defined By | ||
---|---|---|---|
bytes : ByteArray
Get the raw bytes. | MonsterDebuggerData | ||
data : Object [read-only]
Get the data object. | MonsterDebuggerData | ||
id : String [read-only]
Get the plugin id. | MonsterDebuggerData |
Method | Defined By | ||
---|---|---|---|
MonsterDebuggerData(id:String, data:Object)
Shared data class between the client and desktop application. | MonsterDebuggerData | ||
read(bytes:ByteArray):MonsterDebuggerData [static]
Convert raw bytes to a MonsterDebuggerData object. | MonsterDebuggerData |
bytes | property |
bytes:ByteArray
Get the raw bytes.
public function get bytes():ByteArray
public function set bytes(value:ByteArray):void
data | property |
data:Object
[read-only] Get the data object.
public function get data():Object
id | property |
id:String
[read-only] Get the plugin id.
public function get id():String
MonsterDebuggerData | () | Constructor |
public function MonsterDebuggerData(id:String, data:Object)
Shared data class between the client and desktop application.
Parametersid:String — The plugin id
| |
data:Object — The data to send over the socket connection
|
read | () | method |
public static function read(bytes:ByteArray):MonsterDebuggerData
Convert raw bytes to a MonsterDebuggerData object.
Parameters
bytes:ByteArray — The raw bytes to convert
|
MonsterDebuggerData |