javax.ws.rs.container

Interface TimeoutHandler


  • public interface TimeoutHandler
    Asynchronous response suspend time-out handler. JAX-RS users may utilize this callback interface to provide custom resolution of time-out events.

    By default, JAX-RS runtime generates a WebApplicationException with a HTTP 503 (Service unavailable) error response status code. A custom time-out handler may be set on an asynchronous response instance to provide custom time-out event resolution.

    In case of a suspend time-out event, a custom time-out handler takes typically one of the following actions:

    If the registered time-out handler does not take any of the actions above, the default time-out event processing continues and the response is resumed with a generated WebApplicationException containing the HTTP 503 status code.

    Following example illustrates the use of a custom TimeoutHandler:

     public class MyTimeoutHandler implements TimeoutHandler {
         …
         public void handleTimeout(AsyncResponse ar) {
             if (keepSuspended) {
                 ar.setTimeout(10, SECONDS);
             } else if (cancel) {
                 ar.cancel(retryPeriod);
             } else {
                 ar.resume(defaultResponse);
             }
         }
         …
     }
    
     @Path("/messages/next")
     public class MessagingResource {
         …
         @GET
         public void readMessage(@Suspended AsyncResponse ar) {
             ar.setTimeoutHandler(new MyTimeoutHandler());
             suspended.put(ar);
         }
         …
     }
     
    Since:
    2.0
    Author:
    Marek Potociar
    • Method Detail

      • handleTimeout

        void handleTimeout(AsyncResponse asyncResponse)
        Invoked when the suspended asynchronous response is about to time out. Implementing time-out handlers may use the callback method to change the default time-out strategy defined by JAX-RS specification (see AsyncResponse API documentation).

        A custom time-out handler may decide to either

        • resume the suspended response using one of it's resume(...) methods,
        • cancel the suspended response using one of it's cancel(...) methods, or
        • extend the suspend period by setting a new suspend time-out

        In case the time-out handler does not take any of the actions mentioned above, a default time-out strategy is executed by the JAX-RS runtime.
        Parameters:
        asyncResponse - suspended asynchronous response that is timing out.

Nederlandse vertaling

U hebt gevraagd om deze site in het Nederlands te bezoeken. Voor nu wordt alleen de interface vertaald, maar nog niet alle inhoud.

Als je me wilt helpen met vertalingen, is je bijdrage welkom. Het enige dat u hoeft te doen, is u op de site registreren en mij een bericht sturen waarin u wordt gevraagd om u toe te voegen aan de groep vertalers, zodat u de gewenste pagina's kunt vertalen. Een link onderaan elke vertaalde pagina geeft aan dat u de vertaler bent en heeft een link naar uw profiel.

Bij voorbaat dank.

Document heeft de 11/06/2005 gemaakt, de laatste keer de 18/08/2025 gewijzigd
Bron van het afgedrukte document:https://www.gaudry.be/nl/java-api-javaee-rf-javax/ws/rs/container/TimeoutHandler.html

De infobrol is een persoonlijke site waarvan de inhoud uitsluitend mijn verantwoordelijkheid is. De tekst is beschikbaar onder CreativeCommons-licentie (BY-NC-SA). Meer info op de gebruiksvoorwaarden en de auteur.

Referenties

  1. Bekijk - html-document Taal van het document:fr Manuel PHP : https://docs.oracle.com, TimeoutHandler (Java(TM) EE 7 Specification APIs)

Deze verwijzingen en links verwijzen naar documenten die geraadpleegd zijn tijdens het schrijven van deze pagina, of die aanvullende informatie kunnen geven, maar de auteurs van deze bronnen kunnen niet verantwoordelijk worden gehouden voor de inhoud van deze pagina.
De auteur van deze site is als enige verantwoordelijk voor de manier waarop de verschillende concepten, en de vrijheden die met de referentiewerken worden genomen, hier worden gepresenteerd. Vergeet niet dat u meerdere broninformatie moet doorgeven om het risico op fouten te verkleinen.