All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.openservices.ots.internal.BatchWriteRowCallable Maven / Gradle / Ivy

package com.aliyun.openservices.ots.internal;

public class BatchWriteRowCallable implements OTSCallable {

    private OTSAsyncDataOperation dataOperation;
    private BatchWriteRowExecutionContext executionContext;

    public BatchWriteRowCallable(OTSAsyncDataOperation dataOperation, BatchWriteRowExecutionContext executionContext) {
        this.dataOperation = dataOperation;
        this.executionContext = executionContext;
    }

    @Override
    public void call() {
        this.dataOperation.batchWriteRow(this.executionContext);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy