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

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

package com.aliyun.openservices.ots.internal;

import com.aliyun.openservices.ots.model.PutRowRequest;
import com.aliyun.openservices.ots.model.PutRowResult;

public class PutRowCallable implements OTSCallable {

    private OTSAsyncDataOperation dataOperation;
    private OTSExecutionContext executionContext;

    public PutRowCallable(OTSAsyncDataOperation dataOperation, OTSExecutionContext executionContext) {
        this.dataOperation = dataOperation;
        this.executionContext = executionContext;
    }

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





© 2015 - 2025 Weber Informatics LLC | Privacy Policy