To contents

13.2.3.1 Protocols.LysKOM.Request._Request

CLASS
Protocols.LysKOM.Request._Request

DESCRIPTION
This is the main request class. All lyskom request classes inherits this class.

METHOD
Protocols.LysKOM.Request._Request.async,
Protocols.LysKOM.Request._Request.sync

SYNTAX
void async(mixed ...args)
mixed sync(mixed ...args)

DESCRIPTION
initialise an asynchronous or a synchronous call, the latter is also evaluating the result. This calls 'indata' in itself, to get the correct arguments to the lyskom protocol call.

METHOD
Protocols.LysKOM.Request._Request._reply,
Protocols.LysKOM.Request._Request.reply

SYNTAX
mixed _reply(object|array what)
mixed reply(object|array what)

DESCRIPTION
_reply is called as callback to evaluate the result, and calls reply in itself to do the real work.

METHOD
Protocols.LysKOM.Request._Request.`

SYNTAX
mixed `()()

DESCRIPTION
wait for the call to finish.

variable int ok tells if the call is executed ok variable object error how the call failed The call is completed if (ok||error).

METHOD
Protocols.LysKOM.Request._Request._async,
Protocols.LysKOM.Request._Request._sync

SYNTAX
void _async(int call,  mixed_data)
mixed _sync(int call,  mixed_data)

DESCRIPTION
initialise an asynchronous or a synchronous call, the latter is also evaluating the result. These are called by async and sync respectively.

To contents