MCPcopy Create free account
hub / github.com/SeleniumHQ/selenium / combine

Method combine

java/src/org/openqa/selenium/remote/http/Route.java:130–133  ·  view source on GitHub ↗
(Routable first, Routable... others)

Source from the content-addressed store, hash-verified

128 }
129
130 public static Route combine(Routable first, Routable... others) {
131 Require.nonNull("At least one route", first);
132 return new CombinedRoute(Stream.concat(Stream.of(first), Stream.of(others)));
133 }
134
135 public static Route combine(Iterable<Routable> routes) {
136 Require.nonNull("At least one route", routes);

Callers 15

CommonWebResourcesMethod · 0.95
HandlersForTestsMethod · 0.95
setupMethod · 0.95
graphqlRouteMethod · 0.95
baseRouteMethod · 0.95
asServerMethod · 0.95
createHandlersMethod · 0.95
DistributorMethod · 0.95
createHandlersMethod · 0.95

Calls 3

nonNullMethod · 0.95
ofMethod · 0.45
streamMethod · 0.45