- findAll(Class<T>) - Static method in class io.scalecube.utils.ServiceLoaderUtil
-
Finds all implementations of the given service type and creates their instances.
- findAll(Class<T>, Predicate<? super T>) - Static method in class io.scalecube.utils.ServiceLoaderUtil
-
Finds all implementations of the given service type using the given predicate to filter out
found service types and creates their instances.
- findFirst(Class<T>) - Static method in class io.scalecube.utils.ServiceLoaderUtil
-
Finds the first implementation of the given service type and creates its instance.
- findFirst(Class<T>, Predicate<? super T>) - Static method in class io.scalecube.utils.ServiceLoaderUtil
-
Finds the first implementation of the given service type using the given predicate to filter
out found service types and creates its instance.
- from(String) - Static method in class io.scalecube.net.Address
-
Parses given host:port string to create Address instance.