Package akka.http.javadsl.settings
Class RoutingSettings
- java.lang.Object
-
- akka.http.javadsl.settings.RoutingSettings
-
- Direct Known Subclasses:
RoutingSettings
public abstract class RoutingSettings extends java.lang.ObjectPublic API but not intended for subclassing
-
-
Constructor Summary
Constructors Constructor Description RoutingSettings()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static RoutingSettingscreate(akka.actor.ActorSystem system)static RoutingSettingscreate(com.typesafe.config.Config config)static RoutingSettingscreate(java.lang.String configOverrides)abstract intgetDecodeMaxBytesPerChunk()abstract booleangetFileGetConditional()abstract java.lang.StringgetFileIODispatcher()Deprecated.binary compatibility method.abstract longgetRangeCoalescingThreshold()abstract intgetRangeCountLimit()abstract booleangetRenderVanityFooter()abstract booleangetVerboseErrorMessages()RoutingSettingswithDecodeMaxBytesPerChunk(int decodeMaxBytesPerChunk)RoutingSettingswithDecodeMaxSize(long decodeMaxSize)RoutingSettingswithFileGetConditional(boolean fileGetConditional)RoutingSettingswithFileIODispatcher(java.lang.String fileIODispatcher)Deprecated.binary compatibility method.RoutingSettingswithRangeCoalescingThreshold(long rangeCoalescingThreshold)RoutingSettingswithRangeCountLimit(int rangeCountLimit)RoutingSettingswithRenderVanityFooter(boolean renderVanityFooter)RoutingSettingswithVerboseErrorMessages(boolean verboseErrorMessages)
-
-
-
Method Detail
-
create
public static RoutingSettings create(com.typesafe.config.Config config)
-
create
public static RoutingSettings create(java.lang.String configOverrides)
-
create
public static RoutingSettings create(akka.actor.ActorSystem system)
-
getVerboseErrorMessages
public abstract boolean getVerboseErrorMessages()
-
getFileGetConditional
public abstract boolean getFileGetConditional()
-
getRenderVanityFooter
public abstract boolean getRenderVanityFooter()
-
getRangeCountLimit
public abstract int getRangeCountLimit()
-
getRangeCoalescingThreshold
public abstract long getRangeCoalescingThreshold()
-
getDecodeMaxBytesPerChunk
public abstract int getDecodeMaxBytesPerChunk()
-
getFileIODispatcher
public abstract java.lang.String getFileIODispatcher()
Deprecated.binary compatibility method. Use `akka.stream.materializer.blocking-io-dispatcher` to configure the dispatcher. Since 10.1.6.
-
withVerboseErrorMessages
public RoutingSettings withVerboseErrorMessages(boolean verboseErrorMessages)
-
withFileGetConditional
public RoutingSettings withFileGetConditional(boolean fileGetConditional)
-
withRenderVanityFooter
public RoutingSettings withRenderVanityFooter(boolean renderVanityFooter)
-
withRangeCountLimit
public RoutingSettings withRangeCountLimit(int rangeCountLimit)
-
withRangeCoalescingThreshold
public RoutingSettings withRangeCoalescingThreshold(long rangeCoalescingThreshold)
-
withDecodeMaxBytesPerChunk
public RoutingSettings withDecodeMaxBytesPerChunk(int decodeMaxBytesPerChunk)
-
withDecodeMaxSize
public RoutingSettings withDecodeMaxSize(long decodeMaxSize)
-
withFileIODispatcher
public RoutingSettings withFileIODispatcher(java.lang.String fileIODispatcher)
Deprecated.binary compatibility method. Use `akka.stream.materializer.blocking-io-dispatcher` to configure the dispatcher. Since 10.1.6.
-
-