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

tech.ytsaurus.client.rows.WireVersionedRowDeserializer Maven / Gradle / Ivy

package tech.ytsaurus.client.rows;

import java.util.List;

public interface WireVersionedRowDeserializer {

    void onWriteTimestamps(List timestamps);

    void onDeleteTimestamps(List timestamps);

    List getKeyColumnSchema();

    WireValueDeserializer keys(int keyCount);

    WireValueDeserializer values(int valueCount);

    T onCompleteRow();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy