Searched refs:stickinessKey (Results 1 – 2 of 2) sorted by relevance
/external/grpc-grpc-java/core/src/test/java/io/grpc/util/ |
D | RoundRobinLoadBalancerTest.java | 412 Key<String> stickinessKey = Key.of("my-sticky-key", Metadata.ASCII_STRING_MARSHALLER); in noStickinessEnabled_withStickyHeader() local 414 headerWithStickinessValue.put(stickinessKey, "my-sticky-value"); in noStickinessEnabled_withStickyHeader() 477 Key<String> stickinessKey = Key.of("my-sticky-key", Metadata.ASCII_STRING_MARSHALLER); in stickinessEnabled_withStickyHeader() local 479 headerWithStickinessValue.put(stickinessKey, "my-sticky-value"); in stickinessEnabled_withStickyHeader() 507 Key<String> stickinessKey = Key.of("my-sticky-key", Metadata.ASCII_STRING_MARSHALLER); in stickinessEnabled_withDifferentStickyHeaders() local 509 headerWithStickinessValue1.put(stickinessKey, "my-sticky-value"); in stickinessEnabled_withDifferentStickyHeaders() 512 headerWithStickinessValue2.put(stickinessKey, "my-sticky-value2"); in stickinessEnabled_withDifferentStickyHeaders() 552 Key<String> stickinessKey = Key.of("my-sticky-key", Metadata.ASCII_STRING_MARSHALLER); in stickiness_goToTransientFailure_pick_backToReady() local 554 headerWithStickinessValue.put(stickinessKey, "my-sticky-value"); in stickiness_goToTransientFailure_pick_backToReady() 600 Key<String> stickinessKey = Key.of("my-sticky-key", Metadata.ASCII_STRING_MARSHALLER); in stickiness_goToTransientFailure_backToReady_pick() local [all …]
|
/external/grpc-grpc-java/core/src/main/java/io/grpc/util/ |
D | RoundRobinLoadBalancerFactory.java | 339 StickinessState(@Nonnull String stickinessKey) { in StickinessState() argument 340 this.key = Key.of(stickinessKey, Metadata.ASCII_STRING_MARSHALLER); in StickinessState()
|