Package akka.http.impl.engine.parsing
Interface BodyPartParser.EndOfLineConfiguration
-
- All Known Implementing Classes:
BodyPartParser.DefinedEndOfLineConfiguration
,BodyPartParser.UndefinedEndOfLineConfiguration
- Enclosing class:
- BodyPartParser
public static interface BodyPartParser.EndOfLineConfiguration
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
boundary()
int
boundaryLength()
BoyerMoore
boyerMoore()
BodyPartParser.EndOfLineConfiguration
defineOnce(akka.util.ByteString input)
java.lang.String
eol()
int
eolLength()
boolean
isBoundary(akka.util.ByteString input, int offset, int ix)
boolean
isEndOfLine(akka.util.ByteString input, int offset)
byte[]
needle()
-
-
-
Method Detail
-
boundary
java.lang.String boundary()
-
boundaryLength
int boundaryLength()
-
boyerMoore
BoyerMoore boyerMoore()
-
defineOnce
BodyPartParser.EndOfLineConfiguration defineOnce(akka.util.ByteString input)
-
eol
java.lang.String eol()
-
eolLength
int eolLength()
-
isBoundary
boolean isBoundary(akka.util.ByteString input, int offset, int ix)
-
isEndOfLine
boolean isEndOfLine(akka.util.ByteString input, int offset)
-
needle
byte[] needle()
-
-