Package akka.http.javadsl.server
Interface UnsatisfiableRangeRejection
-
- All Superinterfaces:
Rejection
- All Known Implementing Classes:
UnsatisfiableRangeRejection
public interface UnsatisfiableRangeRejection extends Rejection
Rejection created by range directives. Signals that the request was rejected because the requests contains only unsatisfiable ByteRanges. The actualEntityLength gives the client a hint to create satisfiable ByteRanges.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long
actualEntityLength()
java.lang.Iterable<ByteRange>
getUnsatisfiableRanges()
-
-
-
Method Detail
-
actualEntityLength
long actualEntityLength()
-
getUnsatisfiableRanges
java.lang.Iterable<ByteRange> getUnsatisfiableRanges()
-
-