ActiveJob

サーバーで実行されるジョブ。 また、スケジュール済みジョブのインスタンスです。

ジョブは次の 3 つの状態で存在します。

  • 実行がスケジュールされています。
  • 現在実行中です。
  • 実行が完了しました(および既にジョブログに情報を書き込んでいます)。

ジョブタイプを返すには、ジョブタイプの値を指定します。 次のジョブを返すことができます。

  • imageServingPublishJob
  • imageRenderingPublishJob
  • videoPublishJob
  • serverDirectoryPublish
  • JobUploadDirectoryJob
  • uploadUrlsJob

パラメータ

名前 種類 説明
companyHandle xsd:string 会社に対する取り扱い。
jobHandle xsd:string ジョブを処理します。
名前 xsd:string ジョブの一意の名前。
originalName xsd:string 元の ActiveJob ジョブで送信されたタイプ。
type xsd:string システムから返されるジョブタイプの選択。
state xsd:string システムから返されるアクティブなジョブ状態の選択。
submitUserEmail xsd:string ジョブをスケジュールしたユーザーの電子メールアドレス。
locale xsd:string ジョブログの詳細と電子メールのローカライゼーションのロケールです。

ロケールをとして指定します。 <language_code>[-<country_code>](言語コードは ISO-639 で指定された小文字 2 文字のコードで、オプションの国コードは ISO-3166 で指定された大文字 2 文字のコードです)。 例えば、英語(米国)のロケール文字列は次のようになります。 en-US.

説明 xsd:string 元々で指定されていたジョブの説明 submitJob.
serverName xsd:string ジョブを実行するサーバーの名前。
startDate xsd:dateTime アクティブなジョブの日付、時刻、およびタイムゾーン。
totalSize xsd:string アクティブなジョブの合計サイズ。
進行状況 xsd:int ジョブの進行状況(ジョブが完了するまでの距離)。
progressMessage xsd:int ジョブの進行状況を示すテキストメッセージです。
lastProgressUpdate xsd:dateTime 前回の進行状況更新の日付、時刻、タイムゾーン。
taskProgressArray types:TaskProgressArray 非同期タスクの進捗状況情報。
imageServingPublishJob types:ImageServingPublishJob 画像サービング公開ジョブのジョブの詳細。
imageServingRenderJob types:ImageServingRenderJob 画像レンダリング公開ジョブのジョブ詳細。
videoPublishJob タイプ:VideoPublishJob ビデオ公開ジョブのジョブの詳細。
serverDirectoryPublishJob types:ImageServingPublishJob サーバーディレクトリ公開ジョブのジョブ詳細。
uploadUrlsJob タイプ:UploadUrlsJob アップロード URL ジョブのジョブ詳細。
ripPdfsJob 型:RipPdfsJob
optimizeImagesJob types:OptimizeImagesJob
reprocessAssetsJob タイプ:ReprocessAssetsJob
uploadPostJob タイプ:UploadPostJob ジョブの詳細、デスクトップのアップロードを追跡します。
exportJob タイプ:ExportJob 以前にアップロードしたファイルの承認済み書き出しを許可します。 詳しくは、 書き出しジョブ.

このページ