Hi,

Checking below code:

    bind(interface, port, settings, httpsContext, log)
      .mapAsyncUnordered(settings.maxConnections) { connection ⇒
        handleOneConnection(connection).recoverWith {
          // Ignore incoming errors from the connection as they will cancel 
the binding.
          // As far as it is known currently, these errors can only happen 
if a TCP error bubbles up
          // from the TCP layer through the HTTP layer to the 
Http.IncomingConnection.flow.
          // See https://github.com/akka/akka/issues/17992
          case NonFatal(_) ⇒ Future.successful(())
        }(fm.executionContext)
      }
      .to(Sink.ignore)
      .run()

It looks like for each connection, 1 flow (defined by handler) will be 
materialized.

Does that mean as long as the connection lives, there will only be 1 
materialized stream serves for this connection?
And if the connection dies (like idled out from the connection pool), the 
stream will stop/terminated as well?

Thanks
Leon



-- 
>>>>>>>>>>      Read the docs: http://akka.io/docs/
>>>>>>>>>>      Check the FAQ: 
>>>>>>>>>> http://doc.akka.io/docs/akka/current/additional/faq.html
>>>>>>>>>>      Search the archives: https://groups.google.com/group/akka-user
--- 
You received this message because you are subscribed to the Google Groups "Akka 
User List" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/akka-user.
For more options, visit https://groups.google.com/d/optout.

Reply via email to