Created
March 10, 2013 16:15
-
-
Save sonygod/5129192 to your computer and use it in GitHub Desktop.
request tinkerbell
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package ; | |
import sys.db.ResultSet; | |
class Ex { | |
public function new() { | |
var test:Test = new TestProxy(); | |
//TestProxy is @forwart typedef Test autoCreate | |
//and auto and two args [ callBack and args] | |
test.dropItem(1000, callBack, [1000]) | |
} | |
function callBack(args:Array) { | |
} | |
} | |
//Test write in server side .and for client call | |
typedef Test = { | |
function dropItem(entityId:Int):Void; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment