Packagecom.hippohx
Classpublic class HaxeBackendListener
InheritanceHaxeBackendListener Inheritance flash.events.EventDispatcher
ImplementsiHaxeBackendListener
SubclassesApplication, Dialog, File, Registry, SQLite, System, VideoServer, Window

The HaxeBackendListener is the base class for all main HippoHX's classes. When a class wants to receive calls from the Neko backend it has to register itself with the Api class. See Client server communication and Creating your own backend on the wiki for more info.

See also

com.hippohx.Api
com.hippohx.iHaxeBackendListener


Protected Properties
 PropertyDefined by
  HAXE_BACKEND : String = ""
HAXE_BACKEND defines the ID that a Neko backend needs to use to call methods on this class (or the class extending this one).
HaxeBackendListener
Public Methods
 MethodDefined by
  
HaxeBackendListener
  
Returns HAXE_BACKEND API identifier.
HaxeBackendListener
Property detail
HAXE_BACKENDproperty
protected var HAXE_BACKEND:String = ""

HAXE_BACKEND defines the ID that a Neko backend needs to use to call methods on this class (or the class extending this one).

See also

Constructor detail
HaxeBackendListener()constructor
public function HaxeBackendListener()
Method detail
getHaxeBackendId()method
public function getHaxeBackendId():String

Returns HAXE_BACKEND API identifier.

Returns
String — HAXE_BACKEND API identifier.

See also