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

io.deephaven.engine.table.ResettableContext Maven / Gradle / Ivy

Go to download

Engine API: Engine API module, suitable as a compile-time dependency for most queries

The newest version!
//
// Copyright (c) 2016-2024 Deephaven Data Labs and Patent Pending
//
package io.deephaven.engine.table;

/**
 * Resettable {@link Context} interface, for contexts that must be reset between steps of an operation (e.g. when
 * advancing to a new region, or a new chunk of ordered keys).
 */
public interface ResettableContext extends Context {

    /**
     * Reset this context before it will be used again.
     */
    void reset();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy