Interface IAvailabiltyResolver
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Common interface for resolving the availability of web endpoints.
- Since:
- 8.0.0
- Author:
- XIMA Media GmbH
-
Method Summary
Modifier and TypeMethodDescriptionboolean
isAvailable
(IAvailabilityContext context) Checks if the web endpoint is available with the given context.
-
Method Details
-
isAvailable
Checks if the web endpoint is available with the given context.- Parameters:
context
- for determining if the web endpoint is available.- Returns:
true
if the web endpoint is available andfalse
otherwise.
-