Class MethodMatch.Builder<B extends MethodMatch.Builder<B>>
- java.lang.Object
-
- com.tick42.glue.core.interop.discovery.MethodMatch.Builder<B>
-
- Direct Known Subclasses:
MethodQuery
- Enclosing class:
- MethodMatch
public static class MethodMatch.Builder<B extends MethodMatch.Builder<B>> extends Object
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BlocalOnly(boolean localOnly)Flag whether or not the search should include remote servers.Bname(String name)Bname(Predicate<String> name)BnameMatches(String regex)BnameMatches(Pattern pattern)BsupportsStreaming()BsupportsStreaming(boolean supportsStreaming)
-
-
-
Method Detail
-
supportsStreaming
public B supportsStreaming()
-
supportsStreaming
public B supportsStreaming(boolean supportsStreaming)
-
localOnly
public B localOnly(boolean localOnly)
Flag whether or not the search should include remote servers.trueis the default setting and only includes local servers in the search. Likewise,falseoverrides it and expands the search to include remote servers.- Parameters:
localOnly- flag for the search range- Returns:
- this builder, never
null - Since:
- 1.3
-
-