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.Stringboundary()intboundaryLength()BoyerMooreboyerMoore()BodyPartParser.EndOfLineConfigurationdefineOnce(akka.util.ByteString input)java.lang.Stringeol()inteolLength()booleanisBoundary(akka.util.ByteString input, int offset, int ix)booleanisEndOfLine(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()
-
-