Files
medusa-store/docs/content/references/services/classes/BatchJobService.md
2022-07-06 17:11:05 +03:00

9.7 KiB

Class: BatchJobService

Hierarchy

Constructors

constructor

new BatchJobService(__namedParameters)

Parameters

Name Type
__namedParameters InjectedDependencies

Overrides

TransactionBaseService<BatchJobService&gt;.constructor

Defined in

services/batch-job.ts:93

Properties

batchJobRepository_

Protected Readonly batchJobRepository_: typeof BatchJobRepository

Defined in

services/batch-job.ts:41


batchJobStatusMapToProps

Protected batchJobStatusMapToProps: Map<BatchJobStatus, { entityColumnName: string ; eventType: string }>

Defined in

services/batch-job.ts:45


configModule

Protected Optional Readonly configModule: Record<string, unknown>

Inherited from

TransactionBaseService.configModule


container

Protected Readonly container: unknown

Inherited from

TransactionBaseService.container


eventBus_

Protected Readonly eventBus_: EventBusService

Defined in

services/batch-job.ts:42


manager_

Protected manager_: EntityManager

Overrides

TransactionBaseService.manager_

Defined in

services/batch-job.ts:38


strategyResolver_

Protected Readonly strategyResolver_: StrategyResolverService

Defined in

services/batch-job.ts:43


transactionManager_

Protected transactionManager_: undefined | EntityManager

Overrides

TransactionBaseService.transactionManager_

Defined in

services/batch-job.ts:39


Events

Static Readonly Events: Object

Type declaration

Name Type
CANCELED string
COMPLETED string
CONFIRMED string
CREATED string
FAILED string
PRE_PROCESSED string
PROCESSING string
UPDATED string

Defined in

services/batch-job.ts:27

Methods

atomicPhase_

Protected atomicPhase_<TResult, TError>(work, isolationOrErrorHandler?, maybeErrorHandlerOrDontFail?): Promise<TResult>

Wraps some work within a transactional block. If the service already has a transaction manager attached this will be reused, otherwise a new transaction manager is created.

Type parameters

Name
TResult
TError

Parameters

Name Type Description
work (transactionManager: EntityManager) => Promise<TResult> the transactional work to be done
isolationOrErrorHandler? IsolationLevel | (error: TError) => Promise<void | TResult> the isolation level to be used for the work.
maybeErrorHandlerOrDontFail? (error: TError) => Promise<void | TResult> Potential error handler

Returns

Promise<TResult>

the result of the transactional work

Inherited from

TransactionBaseService.atomicPhase_

Defined in

interfaces/transaction-base-service.ts:53


cancel

cancel(batchJobOrId): Promise<BatchJob>

Parameters

Name Type
batchJobOrId string | BatchJob

Returns

Promise<BatchJob>

Defined in

services/batch-job.ts:284


complete

complete(batchJobOrId): Promise<BatchJob>

Parameters

Name Type
batchJobOrId string | BatchJob

Returns

Promise<BatchJob>

Defined in

services/batch-job.ts:266


confirm

confirm(batchJobOrId): Promise<BatchJob>

Parameters

Name Type
batchJobOrId string | BatchJob

Returns

Promise<BatchJob>

Defined in

services/batch-job.ts:248


create

create(data): Promise<BatchJob>

Parameters

Name Type
data BatchJobCreateProps

Returns

Promise<BatchJob>

Defined in

services/batch-job.ts:153


listAndCount

listAndCount(selector?, config?): Promise<[BatchJob[], number]>

Parameters

Name Type
selector FilterableBatchJobProps
config FindConfig<BatchJob>

Returns

Promise<[BatchJob[], number]>

Defined in

services/batch-job.ts:137


prepareBatchJobForProcessing

prepareBatchJobForProcessing(data, req): Promise<CreateBatchJobInput>

Parameters

Name Type
data CreateBatchJobInput
req Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>

Returns

Promise<CreateBatchJobInput>

Defined in

services/batch-job.ts:380


retrieve

retrieve(batchJobId, config?): Promise<BatchJob>

Parameters

Name Type
batchJobId string
config FindConfig<BatchJob>

Returns

Promise<BatchJob>

Defined in

services/batch-job.ts:112


setFailed

setFailed(batchJobOrId, error?): Promise<BatchJob>

Parameters

Name Type
batchJobOrId string | BatchJob
error? BatchJobResultError

Returns

Promise<BatchJob>

Defined in

services/batch-job.ts:354


setPreProcessingDone

setPreProcessingDone(batchJobOrId): Promise<BatchJob>

Parameters

Name Type
batchJobOrId string | BatchJob

Returns

Promise<BatchJob>

Defined in

services/batch-job.ts:302


setProcessing

setProcessing(batchJobOrId): Promise<BatchJob>

Parameters

Name Type
batchJobOrId string | BatchJob

Returns

Promise<BatchJob>

Defined in

services/batch-job.ts:334


shouldRetryTransaction_

Protected shouldRetryTransaction_(err): boolean

Parameters

Name Type
err Record<string, unknown> | { code: string }

Returns

boolean

Inherited from

TransactionBaseService.shouldRetryTransaction_

Defined in

interfaces/transaction-base-service.ts:34


update

update(batchJobOrId, data): Promise<BatchJob>

Parameters

Name Type
batchJobOrId string | BatchJob
data Partial<Pick<BatchJob, "context" | "result">>

Returns

Promise<BatchJob>

Defined in

services/batch-job.ts:172


updateStatus

Protected updateStatus(batchJobOrId, status): Promise<BatchJob>

Parameters

Name Type
batchJobOrId string | BatchJob
status BatchJobStatus

Returns

Promise<BatchJob>

Defined in

services/batch-job.ts:213


withTransaction

withTransaction(transactionManager?): BatchJobService

Parameters

Name Type
transactionManager? EntityManager

Returns

BatchJobService

Inherited from

TransactionBaseService.withTransaction

Defined in

interfaces/transaction-base-service.ts:16