Yahoo Italia Ricerca nel Web

Risultati di ricerca

  1. This web browser does not support JavaScript or JavaScript in this web browser is not enabled. To find out if your web browser supports JavaScript or to enable JavaScript, see web browser help. Sign in with your organizational account

  2. clickpath.akka.euAKKA

    AKKA

    • Philosophy
    • Using Akka Http
    • Routing DSL For Http Servers
    • Marshalling
    • Streaming
    • Low-Level Http Server Apis
    • Http Client API
    • The Modules That Make Up Akka Http

    Akka HTTP has been driven with a clear focus on providing tools for building integration layers rather than application cores. As such it regards itself as a suite of libraries rather than a framework. A framework, as we’d like to think of the term, gives you a “frame”, in which you build your application. It comes with a lot of decisions already p...

    Akka HTTP is provided as independent modules from Akka itself under its own release cycle. Akka HTTP is compatible with Akka >= 2.9.2 and future Akka 2.x versions that are released during the lifetime of Akka HTTP 10.4.x. The modules, however, do not depend on akka-actor or akka-stream, so the user is required to choose an Akka version to run again...

    The high-level, routing API of Akka HTTP provides a DSL to describe HTTP “routes” and how they should be handled. Each route is composed of one or more level of DirectivesDirectivesthat narrows down to handling one specific type of request. For example one route might start with matching the path of the request, only matching if it is “/hello”, the...

    Transforming request and response bodies between over-the-wire formats and objects to be used in your application is done separately from the route declarations, in marshallers, which are pulled in implicitly using the “magnet” pattern. This means that you can completea request with any kind of object as long as there is an implicit marshaller avai...

    One of the strengths of Akka HTTP is that streaming data is at its heart meaning that both request and response bodies can be streamed through the server achieving constant memory usage even for very large requests or responses. Streaming responses will be backpressured by the remote client so that the server will not push data faster than the clie...

    The low-level Akka HTTP server APIs allows for handling connections or individual requests by accepting HttpRequestHttpRequest s and answering them by producing HttpResponseHttpResponse s. This is provided by the akka-http-core module, which is included automatically when you depend on akka-http but can also be used on its own. APIs for handling su...

    The client APIs provide methods for calling an HTTP server using the same HttpRequestHttpRequest and HttpResponseHttpResponseabstractions that Akka HTTP server uses but adds the concept of connection pools to allow multiple requests to the same server to be handled more performantly by re-using TCP connections to the server. Example simple request:...

    Akka HTTP is structured into several modules: akka-http 1. Higher-level functionality, like (un)marshalling, (de)compression as well as a powerful DSL for defining HTTP-based APIs on the server-side, this is the recommended way to write HTTP servers with Akka HTTP. Details can be found in the section High-level Server-Side API akka-http-core 1. A c...

  3. Akkodis Italy. Over €100 millions in revenues and more than 1,500 talents on staff - including IT engineers and digital experts - we work every day to improve the Smart Industry solutions of our partners’ companies all over Italy: from team training to projects implementation. United by passion for technology and love for our country, our ...

  4. Getting started guide. Learn Akka concepts applied to an example around IoT. Architecture. Microservices. Tutorial bringing together essential parts of Akka to build resilient and scalable microservices. Distributed Cluster. Connect Akka services across geographical locations for lower latency and higher availability. Edge New.

  5. Log in to candidate area. I already have a candidate area. › The candidate area is a place where you can post your CV online so that it can be viewed by our recruiting team. › Your candidate area enables you to apply more quickly for our vacancies . › Logging in is simple: Enter your username and password below. Log in to candidate area.

  6. Higher-level functionality in the akka-http module which offers a very flexible “Routing DSL” for elegantly defining RESTful web services as well as functionality of typical web servers or frameworks, like deconstruction of URIs, content negotiation or static content serving. Core Server API