Go 1.11 はサポートが終了しており、2026 年 1 月 31 日に
非推奨になります。非推奨になると、過去に組織のポリシーを使用して以前のランタイムのデプロイを再度有効にしていた場合でも、Go 1.11 アプリケーションをデプロイできなくなります。既存の Go 1.11 アプリケーションは、
非推奨日以降も引き続き実行され、トラフィックを受信します。
サポートされている最新バージョンの Go に移行することをおすすめします。
pull タスクの作成
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
pull キューを作成したら、タスクを作成してキューに追加できます。
まず、queue.yaml
で定義されているキューの名前が必要になります。次に、Method
を PULL
に設定します。次の例では、pull-queue
という名前の pull キューにタスクを配置します。
次のステップ
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2025-09-04 UTC。
[[["わかりやすい","easyToUnderstand","thumb-up"],["問題の解決に役立った","solvedMyProblem","thumb-up"],["その他","otherUp","thumb-up"]],[["わかりにくい","hardToUnderstand","thumb-down"],["情報またはサンプルコードが不正確","incorrectInformationOrSampleCode","thumb-down"],["必要な情報 / サンプルがない","missingTheInformationSamplesINeed","thumb-down"],["翻訳に関する問題","translationIssue","thumb-down"],["その他","otherDown","thumb-down"]],["最終更新日 2025-09-04 UTC。"],[[["\u003cp\u003ePull queues require prior creation before tasks can be added.\u003c/p\u003e\n"],["\u003cp\u003eThe queue's name, defined in \u003ccode\u003equeue.yaml\u003c/code\u003e, is necessary for adding tasks.\u003c/p\u003e\n"],["\u003cp\u003eSetting the \u003ccode\u003eMethod\u003c/code\u003e to \u003ccode\u003ePULL\u003c/code\u003e is required when adding tasks to a pull queue.\u003c/p\u003e\n"],["\u003cp\u003eTasks are added to a pull queue using \u003ccode\u003etaskqueue.Add\u003c/code\u003e, as demonstrated in the example with \u003ccode\u003epull-queue\u003c/code\u003e.\u003c/p\u003e\n"]]],[],null,["# Creating Pull Tasks\n\nOnce you have [created a pull\nqueue](/appengine/docs/legacy/standard/go111/taskqueue/pull/creating-pull-queues), you\ncan create tasks and add them to the queue.\n| This API is supported for first-generation runtimes and can be used when [upgrading to corresponding second-generation runtimes](/appengine/docs/standard/\n| go\n| /services/access). If you are updating to the App Engine Go 1.12+ runtime, refer to the [migration guide](/appengine/migration-center/standard/migrate-to-second-gen/go-differences) to learn about your migration options for legacy bundled services.\n\nFirst you need the [name](/appengine/docs/legacy/standard/go111/config/queueref#name)\nof the queue, which is defined\nin `queue.yaml`.\n\n\nThen you set `Method` to `PULL`.\n\nThe following example puts tasks in a pull queue named `pull-queue`: \n\n t := &taskqueue.Task{\n \tPayload: []byte(\"hello world\"),\n \tMethod: \"PULL\",\n }\n _, err := taskqueue.Add(ctx, t, \"pull-queue\")\n\nWhat's next\n-----------\n\n- Learn how to [lease tasks](/appengine/docs/legacy/standard/go111/taskqueue/pull/leasing-pull-tasks)."]]