Restez organisé à l'aide des collections
Enregistrez et classez les contenus selon vos préférences.
Le code suivant permet d'ajouter une tâche à une file d'attente avec des options.
Dans index.html :
<!-- A basic index.html file served from the "/" URL. -->
<html>
<body>
<p>Enqueue a value, to be processed by a worker.</p>
<form action="/enqueue" method="post">
<input type="text" name="key">
<input type="submit">
</form>
</body>
</html>
Dans Enqueue.java :
// The Enqueue servlet should be mapped to the "/enqueue" URL.// With @WebServlet annotation the webapp/WEB-INF/web.xml is no longer required.@WebServlet(name="TaskEnque",description="taskqueue: Enqueue a job with a key",urlPatterns="/taskqueues/enqueue")publicclassEnqueueextendsHttpServlet{protectedvoiddoPost(HttpServletRequestrequest,HttpServletResponseresponse)throwsServletException,IOException{Stringkey=request.getParameter("key");// Add the task to the default queue.Queuequeue=QueueFactory.getDefaultQueue();queue.add(TaskOptions.Builder.withUrl("/worker").param("key",key));response.sendRedirect("/");}}
Dans Worker.java :
// The Worker servlet should be mapped to the "/worker" URL.// With @WebServlet annotation the webapp/WEB-INF/web.xml is no longer required.@WebServlet(name="TaskWorker",description="TaskQueues: worker",urlPatterns="/taskqueues/worker")publicclassWorkerextendsHttpServlet{privatestaticfinalLoggerlog=Logger.getLogger(Worker.class.getName());protectedvoiddoPost(HttpServletRequestrequest,HttpServletResponseresponse)throwsServletException,IOException{Stringkey=request.getParameter("key");// Do something with key.// ...}}
Les tâches ajoutées à cette file d'attente seront exécutées en appelant le gestionnaire de requêtes à l'URL /worker avec le paramètre key. Elles s'exécutent au débit défini dans le fichier queue.xml ou au débit par défaut de cinq tâches par seconde.
Sauf indication contraire, le contenu de cette page est régi par une licence Creative Commons Attribution 4.0, et les échantillons de code sont régis par une licence Apache 2.0. Pour en savoir plus, consultez les Règles du site Google Developers. Java est une marque déposée d'Oracle et/ou de ses sociétés affiliées.
Dernière mise à jour le 2025/04/03 (UTC).
[[["Facile à comprendre","easyToUnderstand","thumb-up"],["J'ai pu résoudre mon problème","solvedMyProblem","thumb-up"],["Autre","otherUp","thumb-up"]],[["Difficile à comprendre","hardToUnderstand","thumb-down"],["Informations ou exemple de code incorrects","incorrectInformationOrSampleCode","thumb-down"],["Il n'y a pas l'information/les exemples dont j'ai besoin","missingTheInformationSamplesINeed","thumb-down"],["Problème de traduction","translationIssue","thumb-down"],["Autre","otherDown","thumb-down"]],["Dernière mise à jour le 2025/04/03 (UTC)."],[[["This content demonstrates how to add a task to a queue using legacy bundled services and APIs within the first-generation App Engine standard environment."],["The provided `index.html` includes a form to submit a value (`key`) to the `/enqueue` URL for task queuing."],["The `Enqueue.java` servlet handles POST requests to `/taskqueues/enqueue`, adding tasks with the provided `key` to the default queue."],["The `Worker.java` servlet, mapped to `/taskqueues/worker`, processes the tasks, receiving the `key` parameter for execution."],["Tasks in the queue are executed by calling the `/worker` request handler, with the rate determined by the `queue.xml` file or defaulting to 5 tasks per second."]]],[]]