Hi Richard, Yes, the docs are a bit rough right now. If you can help with contributing to them that would be much appreciated.
The samples for general usage are in these sections: http://doc.akka.io/docs/akka-stream-and-http-experimental/2.0.2/scala/http/client-side/request-level.html http://doc.akka.io/docs/akka-stream-and-http-experimental/2.0.2/scala/http/client-side/connection-level.html http://doc.akka.io/docs/akka-stream-and-http-experimental/2.0.2/scala/http/client-side/host-level.html As for timeouts, the defaults are configurable from the HTTP client configuration (See http://doc.akka.io/docs/akka-stream-and-http-experimental/2.0.2/scala/http/configuration.html#akka-http-core ) Most of these variants accept a ConnectionPoolSettings which can contain retries and timeouts settings to override the defaults. On top of these, the Future and Stream abstractions have helpers to deal with timeouts, for example idleTimeout, initialTimeout and completionTimeout that can be used in combination with the above options. -Endre On Thu, Jan 21, 2016 at 2:34 PM, Richard Grossman <[email protected]> wrote: > Hi > > I really need to start from something to try to use Akka-Http client. > > The server side have some sample project to start with but nothing on > client site. > No sample how to use the API, how to control timeouts, how to deal with > Http low api protocols > > If I want to assure back-pressure in a flow that includes > May be something I missed because except the Akka documentation I can't > find nothing. > > Please urgent help need > > > > -- > >>>>>>>>>> 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 https://groups.google.com/group/akka-user. > For more options, visit https://groups.google.com/d/optout. > -- Akka Team Typesafe - Reactive apps on the JVM Blog: letitcrash.com Twitter: @akkateam -- >>>>>>>>>> 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 https://groups.google.com/group/akka-user. For more options, visit https://groups.google.com/d/optout.
