Concepts
Unobservable Property
Add an unobservable property to your connector.
Add the UnobservableProperty
decorator to a method to turn it into an unobservable property.
@sila.UnobservableProperty()
async def get_random_number() -> int:
"""Returns a random number."""
return 42