Class Unmarshaller.EnhancedFromEntityUnmarshaller<A>
java.lang.Object
scala.AnyVal
org.apache.pekko.http.scaladsl.unmarshalling.Unmarshaller.EnhancedFromEntityUnmarshaller<A>
- Enclosing interface:
- Unmarshaller<A,B> 
public static class Unmarshaller.EnhancedFromEntityUnmarshaller<A>
extends scala.AnyVal
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionforContentTypes(scala.collection.immutable.Seq<ContentTypeRange> ranges) Modifies the underlyingUnmarshallerto only accept Content-Types matching one of the given ranges.<B> Unmarshaller<HttpEntity,B> mapWithCharset(scala.Function2<A, HttpCharset, B> f) 
- 
Constructor Details- 
EnhancedFromEntityUnmarshaller
 
- 
- 
Method Details- 
underlying
- 
mapWithCharset
- 
forContentTypespublic Unmarshaller<HttpEntity,A> forContentTypes(scala.collection.immutable.Seq<ContentTypeRange> ranges) Modifies the underlyingUnmarshallerto only accept Content-Types matching one of the given ranges. Note that you can only restrict to a subset of the Content-Types accepted by the underlying unmarshaller, i.e. the given ranges must be completely supported also by the underlying Unmarshaller! If a violation of this rule is detected at runtime, i.e. if an entity is encountered whose Content-Type is matched by one of the given ranges but rejected by the underlying unmarshaller an IllegalStateException will be thrown!- Parameters:
- ranges- (undocumented)
- Returns:
- (undocumented)
 
 
-