Package org.openhab.core.common
Interface SafeCaller
@NonNullByDefault
public interface SafeCaller
OSGi service to obtain a
SafeCallerBuilder
.
Safe-calls are used within the framework in order to protect it from hanging/blocking binding code and log meaningful
messages to detect and identify such hanging code.- Author:
- Simon Kaufmann - Initial contribution
-
Field Summary
Modifier and TypeFieldDescriptionstatic final long
Default timeout for actions in milliseconds. -
Method Summary
Modifier and TypeMethodDescription<T> SafeCallerBuilder<T>
Create a safe call builder for the given object.
-
Field Details
-
DEFAULT_TIMEOUT
static final long DEFAULT_TIMEOUTDefault timeout for actions in milliseconds.
-
-
Method Details
-
create
Create a safe call builder for the given object.- Parameters:
target
- the object on which calls should be protected by the safe callerinterfaceType
- the interface which defines the relevant methods- Returns:
- a safe call builder instance.
-