hololinked.client.abstractions.ConsumedThingAction
Source code in hololinked\client\abstractions.py
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 |
|
Attributes
last_return_value
class-attribute
instance-attribute
last_return_value = property(fget=get_last_return_value, doc='cached return value of the last call to the method')
Functions
__init__
Parameters:
Name | Type | Description | Default |
---|---|---|---|
|
ActionAffordance
|
dataclass object representing the action |
required |
Source code in hololinked\client\abstractions.py
__call__
Invoke action/method on server
Parameters:
Name | Type | Description | Default |
---|---|---|---|
|
arguments to the action |
()
|
|
|
keyword arguments to the action |
{}
|
Source code in hololinked\client\abstractions.py
async_call
async
async invoke action on server - asynchronous at the network level, may not necessarily be at the server level.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
|
arguments to the action |
()
|
|
|
keyword arguments to the action |
{}
|
Source code in hololinked\client\abstractions.py
oneway
Only invokes the action on the server and does not wait for reply, neither does the server reply to this invokation.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
|
arguments to the action |
()
|
|
|
keyword arguments to the action |
{}
|
Source code in hololinked\client\abstractions.py
noblock
Invoke the action and collect the reply later
Parameters:
Name | Type | Description | Default |
---|---|---|---|
|
arguments to the action |
()
|
|
|
keyword arguments to the action |
{}
|
Returns:
Type | Description |
---|---|
str
|
id of the request or message (UUID4 as string) |
Source code in hololinked\client\abstractions.py
get_last_return_value
retrieve return value of the last call to the action