hololinked.client.abstractions.ConsumedThingAction
Client side action call abstraction. Subclass from here to implement protocol specific action call.
Source code in hololinked/hololinked/client/abstractions.py
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 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 | |
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')
cached return value of the last call to the method
Functions
__init__
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
ActionAffordance
|
dataclass TD fragment representing the action (must have forms). |
required |
|
Any
|
instance of the owning consumed Thing or |
required |
|
BoundLogger
|
logger instance |
required |
Source code in hololinked/hololinked/client/abstractions.py
__call__
Invoke action/method on server
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
arguments to the action |
()
|
|
|
keyword arguments to the action |
{}
|
Returns:
| Type | Description |
|---|---|
Any
|
reply of the action call |
Source code in hololinked/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 |
{}
|
Returns:
| Type | Description |
|---|---|
Any
|
reply of the action call |
Source code in hololinked/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/hololinked/client/abstractions.py
noblock
Invoke the action and collect the reply later. A message ID must be returned by the server to identify the invokation.
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/hololinked/client/abstractions.py
read_reply
Read the reply of the action call which was scheduled with noblock.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
str
|
id of the request or message (UUID4 as string) |
required |
|
float | int | None
|
timeout in seconds to wait for the reply, None means wait indefinitely |
None
|
Returns:
| Type | Description |
|---|---|
Any
|
reply of the action call |
Source code in hololinked/hololinked/client/abstractions.py
get_last_return_value
retrieve return value of the last call to the action