Package akka.http.scaladsl.unmarshalling
Class Unmarshaller.EnhancedUnmarshaller<A,B>
- java.lang.Object
-
- scala.AnyVal
-
- akka.http.scaladsl.unmarshalling.Unmarshaller.EnhancedUnmarshaller<A,B>
-
- Enclosing interface:
- Unmarshaller<A,B>
public static class Unmarshaller.EnhancedUnmarshaller<A,B> extends scala.AnyVal
-
-
Constructor Summary
Constructors Constructor Description EnhancedUnmarshaller(Unmarshaller<A,B> um)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <C> Unmarshaller<A,C>
flatMapWithInput(scala.Function2<A,B,scala.concurrent.Future<C>> f)
<C> Unmarshaller<A,C>
mapWithInput(scala.Function2<A,B,C> f)
Unmarshaller<A,B>
um()
-
-
-
Constructor Detail
-
EnhancedUnmarshaller
public EnhancedUnmarshaller(Unmarshaller<A,B> um)
-
-
Method Detail
-
um
public Unmarshaller<A,B> um()
-
mapWithInput
public <C> Unmarshaller<A,C> mapWithInput(scala.Function2<A,B,C> f)
-
flatMapWithInput
public <C> Unmarshaller<A,C> flatMapWithInput(scala.Function2<A,B,scala.concurrent.Future<C>> f)
-
-