javax.enterprise.concurrent

Interface ManagedScheduledExecutorServic- e

  • All Superinterfaces:
    Executor, ExecutorService, ManagedExecutorService, ScheduledExecutorService

    public interface ManagedScheduledExecutorService
    extends ManagedExecutorService, ScheduledExecutorService
    A manageable version of a ScheduledExecutorService.

    A ManagedScheduledExecutorService extends the Java™ SE ScheduledExecutorService to provide methods for submitting delayed or periodic tasks for execution in a Java™ EE environment. Implementations of the ManagedScheduledExecutorService are provided by a Java™ EE Product Provider. Application Component Providers use the Java Naming and Directory Interface™ (JNDI) to look-up instances of one or more ManagedScheduledExecutorService objects using resource environment references. ManagedScheduledExecutorService instances can also be injected into application components through the use of the Resource annotation.

    The Concurrency Utilities for Java™ EE specification describes several behaviors that a ManagedScheduledExecutorService can implement. The Application Component Provider and Deployer identify these requirements and map the resource environment reference appropriately.

    Tasks are run in managed threads provided by the Java™ EE Product Provider and are run within the application component context that submitted the task. All tasks run without an explicit transaction (they do not enlist in the application component's transaction). If a transaction is required, use a javax.transaction.UserTransaction instance. A UserTransaction instance is available in JNDI using the name: "java:comp/UserTransaction" or by requesting an injection of a UserTransaction object using the Resource annotation.

    Example:

    
     public run() {
       // Begin of task
       InitialContext ctx = new InitialContext();
       UserTransaction ut = (UserTransaction) ctx.lookup("java:comp/UserTransaction");
       ut.begin();
    
       // Perform transactional business logic
    
       ut.commit();
     }
     
    Tasks can optionally provide an ManagedTaskListener to receive notifications of lifecycle events, through the use of ManagedTask interface.

    Asynchronous tasks are typically submitted to the ManagedScheduledExecutorService using one of the submit or schedulemethods, each of which return a Future instance. The Future represents the result of the task and can also be used to check if the task is complete or wait for its completion.

    If the task is cancelled, the result for the task is a CancellationException exception. If the task is unable to run due to start due to a reason other than cancellation, the result is a AbortedException exception. If the task is scheduled with a Trigger and the Trigger forces the task to be skipped, the result will be a SkippedException exception.

    Tasks can be scheduled to run periodically using the schedule methods that take a Trigger as an argument and the scheduleAtFixedRate and scheduleWithFixedDelay methods. The result of the Future will be represented by the currently scheduled or running instance of the task. Future and past executions of the task are not represented by the Future. The state of the Future will therefore change and multiple results are expected.

    For example, if a task is repeating, the lifecycle of the task would be:
    (Note: See ManagedTaskListener for task lifecycle management details.)

    SequenceStateActionListenerNext state
    1A.Nonesubmit()taskSubmittedSubmitted
    2A.SubmittedAbout to call run()taskStartingStarted
    3A.StartedExit run()taskDoneReschedule
    1B.RescheduletaskSubmittedSubmitted
    2B.SubmittedAbout to call run()taskStartingStarted
    3B.StartedExit run()taskDoneReschedule

    Erste Seite von API Java Inhaltsverzeichnis Haut

    Since:
    1.0
    • Method Detail

      • schedule

        ScheduledFuture<?> schedule(Runnable command,
                                    Trigger trigger)
        Creates and executes a task based on a Trigger. The Trigger determines when the task should run and how often.
        Parameters:
        command - the task to execute.
        trigger - the trigger that determines when the task should fire.
        Returns:
        a Future representing pending completion of the task, and whose get() method will return null upon completion.
        Throws:
        RejectedExecutionException - if task cannot be scheduled for execution.
        NullPointerException - if command is null.
      • schedule

        <V> ScheduledFuture<V> schedule(Callable<V> callable,
                                        Trigger trigger)
        Creates and executes a task based on a Trigger. The Trigger determines when the task should run and how often.
        Parameters:
        callable - the function to execute.
        trigger - the trigger that determines when the task should fire.
        Returns:
        a ScheduledFuture that can be used to extract result or cancel.
        Throws:
        RejectedExecutionException - if task cannot be scheduled for execution.
        NullPointerException - if callable is null.

Deutsche Übersetzung

Sie haben gebeten, diese Seite auf Deutsch zu besuchen. Momentan ist nur die Oberfläche übersetzt, aber noch nicht der gesamte Inhalt.

Wenn Sie mir bei Übersetzungen helfen wollen, ist Ihr Beitrag willkommen. Alles, was Sie tun müssen, ist, sich auf der Website zu registrieren und mir eine Nachricht zu schicken, in der Sie gebeten werden, Sie der Gruppe der Übersetzer hinzuzufügen, die Ihnen die Möglichkeit gibt, die gewünschten Seiten zu übersetzen. Ein Link am Ende jeder übersetzten Seite zeigt an, dass Sie der Übersetzer sind und einen Link zu Ihrem Profil haben.

Vielen Dank im Voraus.

Dokument erstellt 11/06/2005, zuletzt geändert 18/08/2025
Quelle des gedruckten Dokuments:https://www.gaudry.be/de/java-api-javaee-rf-javax/enterprise/concurrent/ManagedScheduledExecutorService.html

Die Infobro ist eine persönliche Seite, deren Inhalt in meiner alleinigen Verantwortung liegt. Der Text ist unter der CreativeCommons-Lizenz (BY-NC-SA) verfügbar. Weitere Informationen auf die Nutzungsbedingungen und dem Autor.

Referenzen

  1. Zeigen Sie - html-Dokument Sprache des Dokuments:fr Manuel PHP : https://docs.oracle.com, ManagedScheduledExecutorService (Java(TM) EE 7 Specification APIs)

Diese Verweise und Links verweisen auf Dokumente, die während des Schreibens dieser Seite konsultiert wurden, oder die zusätzliche Informationen liefern können, aber die Autoren dieser Quellen können nicht für den Inhalt dieser Seite verantwortlich gemacht werden.
Der Autor dieser Website ist allein dafür verantwortlich, wie die verschiedenen Konzepte und Freiheiten, die mit den Nachschlagewerken gemacht werden, hier dargestellt werden. Denken Sie daran, dass Sie mehrere Quellinformationen austauschen müssen, um das Risiko von Fehlern zu reduzieren.