Terminates a filter chain in a service.
Terminates a filter chain in a service. For example,
myFilter.andThen(myService)
a service that takes the output request type and the input response type.
Chains a series of filters together:
Chains a series of filters together:
myModularService = handleExceptions.andThen(thrift2Pojo.andThen(parseString))
Note: synchronously thrown exceptions in the underlying service are automatically lifted into Future.exception.
another filter to follow after this one
Conditionally propagates requests down the filter chain.
Conditionally propagates requests down the filter chain. This may useful if you are statically wiring together filter chains based on a configuration file, for instance.
a tuple of boolean and filter.
This is the method to override/implement to create your own Filter.
This is the method to override/implement to create your own Filter.
a service that takes the output request type and the input response type
(Since version 2.8.0) Use 'curried' instead
Issue a backup request after
delaytime has elapsed. This is useful for curtailing tail latencies in distributed systems.Note: Care must be taken to ensure that application of this filter preserves semantics since a request may be issued twice (ie. they are idempotent).