Property | Type | Description | |
---|---|---|---|
complete | bool |
Method | Description | |
---|---|---|
Call ( string name ) : |
Calls a method by name with the specified arguments. Returns a Method object. You must call
|
|
Callback ( Error error, object response ) : void |
Used by LiveData to signal that a response has arrived for this method call.
|
|
ExecuteAsync ( MethodHandler callback = null ) : |
Executes the method immediately, using a coroutine host global to your Unity game.
|
|
Method ( ) : System |
Method | Description | |
---|---|---|
Execute ( ) : IEnumerator | ||
completed ( Error error, object response ) : void |
public static Call ( string name ) : |
||
name | string | Name of the method to call. Corresponds to the key in your Meteor.Methods({key: function value()}) statement. |
return |
public Callback ( Error error, object response ) : void | ||
error | Error | Error. |
response | object | Response. |
return | void |
public ExecuteAsync ( MethodHandler callback = null ) : |
||
callback | MethodHandler | An optional callback when this method returns (which may never happen). |
return |
protected completed ( Error error, object response ) : void | ||
error | Error | |
response | object | |
return | void |