package service
- Alphabetic
- By Inheritance
- service
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Type Members
- class ConstantService[Req, Rep] extends Service[Req, Rep]
A com.twitter.finagle.Service that returns a constant result.
- final class CoreMetricsRegistry extends MetricBuilderRegistry
MetricBuilderRegistry holds a set of essential metrics that are injected through other finagle stack modules.
MetricBuilderRegistry holds a set of essential metrics that are injected through other finagle stack modules. It provides means of instrumenting top-line expressions.
- class DeadlineFilter[Req, Rep] extends SimpleFilter[Req, Rep]
A com.twitter.finagle.Filter that rejects requests when their deadline has passed.
A com.twitter.finagle.Filter that rejects requests when their deadline has passed.
- See also
The user guide for more details.
- class DelayedFactory[Req, Rep] extends ServiceFactory[Req, Rep]
A factory that won't satisfy the service future until an underlying service factory is ready.
A factory that won't satisfy the service future until an underlying service factory is ready.
close
closes the underlying service factory, which means that it won't be satisfied until after the underlying future has been satisfied.- Note
Implicitly masks the underlying future from interrupts. Promises are detached on interruption.
- abstract class ExpiringService[Req, Rep] extends ServiceProxy[Req, Rep]
A service wrapper that expires the
self
service after a certain amount of idle time.A service wrapper that expires the
self
service after a certain amount of idle time. By default, expiring callsclose()
on theself
channel, but this action is customizable.- See also
The user guide for more details.
- class FailedService extends ConstantService[Any, Nothing]
A com.twitter.finagle.Service that fails with a constant Throwable.
- class FailingFactory[Req, Rep] extends ServiceFactory[Req, Rep]
A com.twitter.finagle.ServiceFactory that fails to construct services.
- trait Filterable[+T] extends AnyRef
Allows filtering of a
ServicePerEndpoint
when constructing new ServicePerEndpoint throughMethodBuilder
- class LocalRateLimitingStrategy[Req] extends (Req) => Future[Boolean]
Strategy responsible for tracking requests and computing rate per client.
- class OptionallyServableFilter[Req, Rep] extends SimpleFilter[Req, Rep]
A com.twitter.finagle.Filter that uses an argument function to predicate whether or not to apply the subsequent com.twitter.finagle.Service.
A com.twitter.finagle.Filter that uses an argument function to predicate whether or not to apply the subsequent com.twitter.finagle.Service. In cases where the function returns false, a the filter fails with a com.twitter.finagle.NotServableException.
- class RateLimitingFilter[Req, Rep] extends SimpleFilter[Req, Rep]
A com.twitter.finagle.Filter that accepts or refuses requests based on a rate limiting strategy.
- sealed trait ReqRep extends AnyRef
- case class ReqRepT[Req, Rep](request: Req, response: Try[Rep]) extends ReqRep with Product with Serializable
A type-safe request/response pair.
A type-safe request/response pair.
- See also
ReqRep for untyped
- sealed abstract class ResponseClass extends AnyRef
A classification of the result of a request/response pair.
A classification of the result of a request/response pair.
- See also
- final class ResponseClasses extends AnyRef
Java APIs for
ResponseClass
. - class ResponseClassificationSyntheticException extends Exception with NoStackTrace
Used by response classification to indicate synthetic failures that are not
Exceptions
.Used by response classification to indicate synthetic failures that are not
Exceptions
.- See also
The FAQ for more details.
- type ResponseClassifier = PartialFunction[ReqRep, ResponseClass]
A response classifier allows developers to give Finagle the additional application specific knowledge necessary in order to properly classify them.
A response classifier allows developers to give Finagle the additional application specific knowledge necessary in order to properly classify them. Without this, Finagle can only safely make judgements about transport level failures.
As an example take an HTTP client that receives a response with a 500 status code back from a server. To Finagle this is a successful request/response based solely on the transport level. The application developer may want to treat all 500 status codes as failures and can do so via a com.twitter.finagle.service.ResponseClassifier.
It is a PartialFunction from a request/response pair to a ResponseClass and as such multiple classifiers can be composed together via PartialFunction.orElse.
- Note
Java does not understand the type alias and must be used as
,PartialFunction
in Java. Constructing a custom ResponseClassifier in Java is achievable by implementing AbstractPartialFunction, see com.twitter.finagle.service.ResponseClassifierCompilationTest#testCustomResponseClassifier() for examples.Finagle's default classifier is com.twitter.finagle.service.ResponseClassifier.Default which is a total function fully covering the input domain.
,it is a good practice for users of
ResponseClassifier.apply
to instead usetheClassifier.applyOrElse(input, ResponseClassifier.Default)
in order to ensure that the PartialFunction will be fully covering.- See also
com.twitter.finagle.http.service.HttpResponseClassifier
for some HTTP classification tools.
- trait RetryBudget extends AnyRef
Represents a budget for retrying requests.
Represents a budget for retrying requests.
A retry budget is useful for attenuating the amplifying effects of many clients within a process retrying requests multiple times. This acts as a form of coordination between those retries.
Implementations must be thread-safe.
- See also
RetryBudget.apply for creating instances.
- final class RetryBudgets extends AnyRef
Java APIs for
RetryBudget
. - final class RetryExceptionsFilter[Req, Rep] extends RetryFilter[Req, Rep]
A com.twitter.finagle.Filter that coordinates retries of subsequent Services.
A com.twitter.finagle.Filter that coordinates retries of subsequent Services. Exceptional responses can can be classified as retryable via the retryPolicy argument com.twitter.finagle.service.RetryPolicy.
- Note
consider using a Timer with high resolution so that there is less correlation between retries. For example HighResTimer.Default.
- See also
RetryFilter for a version that allows for retries on "successful" responses as well as failures.
- class RetryFilter[Req, Rep] extends Filter[Req, Rep, Req, Rep]
A com.twitter.finagle.Filter that coordinates retries of subsequent Services.
A com.twitter.finagle.Filter that coordinates retries of subsequent Services. Successful and exceptional responses can be classified as retryable via the retryPolicy com.twitter.finagle.service.RetryPolicy argument.
- Note
consider using a Timer with high resolution so that there is less correlation between retries. For example HighResTimer.Default.
- See also
The user guide for more details.
- abstract class RetryPolicy[-A] extends (A) => Option[(Duration, RetryPolicy[A])]
A function defining retry behavior for a given value type
A
.A function defining retry behavior for a given value type
A
.The Function1 returns None if no more retries should be made and Some if another retry should happen. The returned
Some
has a Duration field for how long to wait for the next retry as well as the nextRetryPolicy
to use.Finagle will automatically handle retryable Throws. Requests that have not been written to or processed by a remote service are safe to retry.
- See also
SimpleRetryPolicy for a Java friendly API.
- abstract class SimpleRetryPolicy[A] extends RetryPolicy[A] with (A) => Option[(Duration, RetryPolicy[A])]
A retry policy abstract class.
A retry policy abstract class. This is convenient to use for Java programmers. Simply implement the two abstract methods
shouldRetry
andbackoffAt
and you're good to go! - class SingletonFactory[Req, Rep] extends ServiceFactory[Req, Rep]
A com.twitter.finagle.ServiceFactory that produces Services identical to the argument
service
.A com.twitter.finagle.ServiceFactory that produces Services identical to the argument
service
.Note that this factory builds new Services, so the "singleton"
service
argument is not shared by reference. This differs from com.twitter.finagle.ServiceFactory#const in thatconst
proxies all requests to the sameservice
rather than creating new objects. - class StatsFilter[Req, Rep] extends SimpleFilter[Req, Rep]
A
StatsFilter
reports request statistics including number of requests, number successful and request latency to the given StatsReceiver.A
StatsFilter
reports request statistics including number of requests, number successful and request latency to the given StatsReceiver.This constructor is exposed for testing purposes.
- class TimeoutFilter[Req, Rep] extends SimpleFilter[Req, Rep]
A com.twitter.finagle.Filter that applies a timeout to requests.
A com.twitter.finagle.Filter that applies a timeout to requests.
If the response is not satisfied within the
timeout
, the Future will be interrupted via Future.raise.
Value Members
- object DeadlineFilter
DeadlineFilter provides an admission control module that can be pushed onto the stack to reject requests with expired deadlines (deadlines are set in the TimeoutFilter).
DeadlineFilter provides an admission control module that can be pushed onto the stack to reject requests with expired deadlines (deadlines are set in the TimeoutFilter). For servers, DeadlineFilter.serverModule should be pushed onto the stack before the stats filters so stats are recorded for the request, and pushed after TimeoutFilter where a new Deadline is set. For clients, DeadlineFilter.clientModule should be pushed before the stats filters; higher in the stack is preferable so requests are rejected as early as possible.
- Note
Deadlines cross process boundaries and can span multiple nodes in a call graph. Even if a direct caller doesn't set a deadline, the server may still receive one and thus potentially fail the request. It is advised that all clients in the call graph be well prepared to handle NACKs before using this.
- object DelayedFactory
- object ExpiringService
- object FailFastFactory
- object NilService extends FailedService
A static FailedService object.
- object PendingRequestFilter
A module which allows clients to limit the number of pending requests per connection.
A module which allows clients to limit the number of pending requests per connection.
The effects of this filter are reflected in the stat "dispatcher/.../pending", which is a sum over per-host connections of dispatched requests between client and server. If the limit is configured as L and there are N per-host connections, "dispatcher/.../pending" will be no greater than L * N.
Note that the "pending" stat recorded in c.t.f.StatsFilter can be greater than L * N because requests can be between c.t.f.StatsFilter and c.t.f.PendingRequestFilter when the stat is read.
- See also
The user guide for more details.
- object ReqRep
Represents a request/response pair.
Represents a request/response pair.
For some protocols, like HTTP, these types are what you'd expect —
com.twitter.finagle.http.Request
andcom.twitter.finagle.http.Response
. While for other protocols that may not be the case. Please review the protocol's "com.twitter.finagle.$protocol.service.$ProtocolResponseClassifier" for details.- See also
com.twitter.finagle.http.service.HttpResponseClassifier
com.twitter.finagle.thriftmux.service.ThriftMuxResponseClassifier
ReqRepT for a type-safe version
- object RequeueFilter
- object ResponseClass
- object ResponseClassifier
- object Retries
The Stack parameters and modules for configuring which and how many failed requests are retried for a client.
The Stack parameters and modules for configuring which and how many failed requests are retried for a client.
- See also
The user guide for more details.
- object RetryBudget
See RetryBudgets for Java APIs.
- object RetryExceptionsFilter
- object RetryFilter
- object RetryPolicy
- object RetryingService
- object StatsFilter
- object TimeoutFilter