hololinked.core.property.Property
Bases: Parameter
Initialize a new Property object and to get/set/delete an object/instance attribute. Please note the capital 'P' in
Property to differentiate from python's own property
. Property
objects are similar to python property
but not a subclass of it due to limitations and redundancy.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
|
Any
|
The default value of the property. |
None
|
|
Optional[str]
|
docstring explaining what this property represents. |
None
|
|
bool
|
if True, the Property value can be changed only once when |
False
|
|
bool
|
if True, the Property value cannot be changed by setting the attribute at the class or instance levels at all. Either the value is fetched always or a getter method is executed which may still generate dynamic values at each get/read operation. |
False
|
|
bool
|
if True, None is accepted as a valid value for this Property, in addition to any other values that are allowed. |
False
|
|
bool
|
set to True to receive change events. Supply a function if interested to evaluate on what conditions the change event must be emitted. Default condition is a plain not-equal-to operator. |
False
|
|
Optional[Union[List, Tuple, str, Enum]]
|
state of state machine where property write can be executed |
None
|
|
bool
|
if True, every write is stored in database and property value persists |
False
|
|
bool
|
if True, property's first value is loaded from database and written using setter.
Further writes are not written to database. if |
False
|
|
bool
|
if True, all write values are stored to database. The database value is not loaded at |
False
|
|
Optional[Callable]
|
custom getter method, mandatory when setter method is also custom supplied. |
None
|
|
Optional[Callable]
|
custom setter method |
None
|
|
Optional[Callable]
|
custom deleter method |
None
|
|
bool
|
set to false to make the property local/not remotely accessible |
True
|
|
Optional[str]
|
optional text label to be used when this Property is shown in a listing. If no label is supplied,
the attribute name for this property in the owning |
None
|
|
Optional[Dict]
|
store your own JSON compatible metadata for the property which gives useful (and modifiable) information about the property. Properties operate using slots which means you cannot set foreign attributes on this object normally. This metadata dictionary should overcome this limitation. |
None
|
|
bool
|
whether a separate Property instance will be created for every |
False
|
|
bool
|
controls whether the default value of this Property will be deepcopied when a |
False
|
|
bool
|
when True, property is set on |
False
|
|
Optional[float]
|
a numeric value, usually in the range 0.0 to 1.0, which allows the order of Properties in a class to be defined in a listing or e.g. in GUI menus. A negative precedence indicates a property that should be hidden in such listings. |
None
|
Source code in hololinked\core\property.py
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 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 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 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 |
|
Functions
comparator
Register a comparator method by using this as a decorator to decide when to push a change event.
external_set
Set the value of the property from an external source, e.g. a remote client.
Source code in hololinked\core\property.py
push_change_event
Pushes change event both on read and write if an event publisher object is available on the owning Thing.