|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectca.weblite.objc.Message
public class Message
A structure the encapsulates a message. This is an optional alternative way of sending messages to the Objective-C runtime.
Client.send(Message...),
RuntimeUtils.msg(Message...),
Proxy.send(Message...)| Field Summary | |
|---|---|
List |
args
List of arguments to pass to the method invocation. |
boolean |
coerceInput
|
boolean |
coerceOutput
|
Exception |
error
If there was en error in the message handling, the error will be saved here. |
boolean |
inputWasCoerced
|
Message |
next
|
boolean |
outputWasCoerced
|
Message |
previous
|
com.sun.jna.Pointer |
receiver
The target of the message. |
Object |
result
Placeholder for the result of the message. |
com.sun.jna.Pointer |
selector
The selector of the message. |
int |
status
The current status of the message. |
static int |
STATUS_CANCELLED
Status identifier of a message to indicate that is has been cancelled. |
static int |
STATUS_COMPLETED
Status identifier of a message to indicated that it has been completed. |
static int |
STATUS_READY
Status identifier of a message to indicate that it is ready to be sent. |
static int |
STATUS_SKIPPED
Status identifier of a message to indicate that it has been skipped. |
| Constructor Summary | |
|---|---|
Message()
|
|
| Method Summary | |
|---|---|
void |
afterResponse()
Method that is called just after the message is send and response received. |
void |
beforeRequest()
Method that is called just before the message is sent. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
public static final int STATUS_SKIPPED
public static final int STATUS_CANCELLED
public static final int STATUS_COMPLETED
public static final int STATUS_READY
public com.sun.jna.Pointer receiver
public com.sun.jna.Pointer selector
public List args
public Object result
public Exception error
public int status
public boolean coerceInput
public boolean coerceOutput
public boolean inputWasCoerced
public boolean outputWasCoerced
public Message next
public Message previous
| Constructor Detail |
|---|
public Message()
| Method Detail |
|---|
public void beforeRequest()
public void afterResponse()
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||