abstract Call<V> |
Call.clone() |
Returns a copy of this object, so you can make an identical follow-up request.
|
static <V> Call<V> |
Call.create(V v) |
Returns a completed call which has the supplied value.
|
static <S> Call<List<S>> |
Call.emptyList() |
|
<R> Call<R> |
Call.flatMap(Call.FlatMapper<V,R> flatMapper) |
Maps the result of this call into another, as defined by the flatMapper function.
|
Call<V> |
Call.handleError(Call.ErrorHandler<V> errorHandler) |
Returns a call which can attempt to resolve an exception.
|
Call<V2> |
Call.FlatMapper.map(V1 input) |
|
<R> Call<R> |
Call.map(Call.Mapper<V,R> mapper) |
Maps the result of this call into a different shape, as defined by the mapper function.
|
abstract Call<Void> |
Sender.sendSpans(List<byte[]> encodedSpans) |
Sends a list of encoded spans to a transport such as http or Kafka.
|