Export new config options.

This commit is contained in:
Jay
2026-04-23 18:54:00 -04:00
parent 2a6cd3a487
commit a3c1e684be
+10
View File
@@ -93,6 +93,8 @@ var (
WithRetryJitterFactor = transport.WithRetryJitterFactor WithRetryJitterFactor = transport.WithRetryJitterFactor
WithWriteTimeout = transport.WithWriteTimeout WithWriteTimeout = transport.WithWriteTimeout
WithCloseHandler = transport.WithCloseHandler WithCloseHandler = transport.WithCloseHandler
WithConnectionLoggingEnabled = transport.WithLoggingEnabled
WithConnectionLogLevel = transport.WithLogLevel
) )
// Outbound Pool constructors // Outbound Pool constructors
@@ -115,6 +117,8 @@ var (
WithOutboundInboxBufferSize = outbound.WithInboxBufferSize WithOutboundInboxBufferSize = outbound.WithInboxBufferSize
WithOutboundEventsBufferSize = outbound.WithEventsBufferSize WithOutboundEventsBufferSize = outbound.WithEventsBufferSize
WithOutboundErrorsBufferSize = outbound.WithErrorsBufferSize WithOutboundErrorsBufferSize = outbound.WithErrorsBufferSize
WithOutboundPoolLoggingEnabled = outbound.WithPoolLoggingEnabled
WithOutboundPoolLogLevel = outbound.WithPoolLogLevel
WithOutboundConnectionConfig = outbound.WithConnectionConfig WithOutboundConnectionConfig = outbound.WithConnectionConfig
WithOutboundWorkerConfig = outbound.WithWorkerConfig WithOutboundWorkerConfig = outbound.WithWorkerConfig
WithOutboundWorkerFactory = outbound.WithWorkerFactory WithOutboundWorkerFactory = outbound.WithWorkerFactory
@@ -125,6 +129,8 @@ var (
var ( var (
WithOutboundKeepaliveTimeout = outbound.WithKeepaliveTimeout WithOutboundKeepaliveTimeout = outbound.WithKeepaliveTimeout
WithOutboundMaxQueueSize = outbound.WithMaxQueueSize WithOutboundMaxQueueSize = outbound.WithMaxQueueSize
WithOutboundWorkerLoggingEnabled = outbound.WithWorkerLoggingEnabled
WithOutboundWorkerLogLevel = outbound.WithWorkerLogLevel
) )
// Inbound Pool constructors // Inbound Pool constructors
@@ -147,6 +153,8 @@ var (
WithInboundInboxBufferSize = inbound.WithInboxBufferSize WithInboundInboxBufferSize = inbound.WithInboxBufferSize
WithInboundEventsBufferSize = inbound.WithEventsBufferSize WithInboundEventsBufferSize = inbound.WithEventsBufferSize
WithInboundErrorsBufferSize = inbound.WithErrorsBufferSize WithInboundErrorsBufferSize = inbound.WithErrorsBufferSize
WithInboundPoolLoggingEnabled = inbound.WithPoolLoggingEnabled
WithInboundPoolLogLevel = inbound.WithPoolLogLevel
WithInboundConnectionConfig = inbound.WithConnectionConfig WithInboundConnectionConfig = inbound.WithConnectionConfig
WithInboundWorkerConfig = inbound.WithWorkerConfig WithInboundWorkerConfig = inbound.WithWorkerConfig
WithInboundWorkerFactory = inbound.WithWorkerFactory WithInboundWorkerFactory = inbound.WithWorkerFactory
@@ -157,6 +165,8 @@ var (
var ( var (
WithInboundInactivityTimeout = inbound.WithInactivityTimeout WithInboundInactivityTimeout = inbound.WithInactivityTimeout
WithInboundMaxQueueSize = inbound.WithMaxQueueSize WithInboundMaxQueueSize = inbound.WithMaxQueueSize
WithInboundWorkerLoggingEnabled = inbound.WithWorkerLoggingEnabled
WithInboundWorkerLogLevel = inbound.WithWorkerLogLevel
) )
// Socket type — needed for inbound pool.Add and pool.Replace // Socket type — needed for inbound pool.Add and pool.Replace