C# 클래스 NuxeoClient.Wrappers.Batch

Represents a remote batch in the Nuxeo server, to which one ore more files can be uploaded.
For more details about file uploading, check How to Upload a File @ Nuxeo Documentation Center. For more information about batch upload, check Blob Upload for Batch Processing @ Nuxeo Documentation Center.
상속: BatchInfo
파일 보기 프로젝트 열기: nuxeo/nuxeo-dotnet-client 1 사용 예제들

Private Properties

프로퍼티 타입 설명

공개 메소드들

메소드 설명
Batch ( ) : Newtonsoft.Json

Initializes a new instance of Batch.

Drop ( ) : Task

Drops the current Batch from the server.

Info ( int fileIndex ) : Task

Requests information about a particular uploaded file.

Info ( ) : Task>

Requests information regarding all the files uploaded so far.

Operation ( string operationId ) : System.Operation

Creates a new instance of Operation to be executed on all uploaded files in the current batch.

SetClient ( Client client ) : Batch

Sets the Nuxeo Client instance through which the requests for this batch will be made.

Upload ( UploadJob job ) : Task

Executes a an UploadJob.

메소드 상세

Batch() 공개 메소드

Initializes a new instance of Batch.
public Batch ( ) : Newtonsoft.Json
리턴 Newtonsoft.Json

Drop() 공개 메소드

Drops the current Batch from the server.
public Drop ( ) : Task
리턴 Task

Info() 공개 메소드

Requests information about a particular uploaded file.
public Info ( int fileIndex ) : Task
fileIndex int The index of the uploaded file.
리턴 Task

Info() 공개 메소드

Requests information regarding all the files uploaded so far.
public Info ( ) : Task>
리턴 Task>

Operation() 공개 메소드

Creates a new instance of Operation to be executed on all uploaded files in the current batch.
public Operation ( string operationId ) : System.Operation
operationId string The operation id.
리턴 System.Operation

SetClient() 공개 메소드

Sets the Nuxeo Client instance through which the requests for this batch will be made.
public SetClient ( Client client ) : Batch
client Client The Nuxeo instance.
리턴 Batch

Upload() 공개 메소드

Executes a an UploadJob.
public Upload ( UploadJob job ) : Task
job UploadJob The to be executed.
리턴 Task