You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
lethttp2ConnectionInitializer:NIOChannelInitializerWithOutput<(HTTP2ConnectionOutput,NIOHTTP2Handler.AsyncStreamMultiplexer<HTTP2StreamOutput>)>={ channel in
688
+
channel.configureAsyncHTTP2Pipeline(
689
+
mode:.server,
690
+
streamDelegate: streamDelegate,
691
+
configuration: http2Configuration,
692
+
streamInitializer: http2StreamInitializer
693
+
).flatMap{ multiplexer in
694
+
returnhttp2ConnectionInitializer(channel).map{ connectionChannel in
695
+
(connectionChannel, multiplexer)
696
+
}
697
+
}
698
+
}
699
+
lethttp1ConnectionInitializer:NIOChannelInitializerWithOutput<HTTP1ConnectionOutput>={ channel in
700
+
channel.pipeline.configureHTTPServerPipeline().flatMap{ _ in
0 commit comments