io.deephaven.engine.table.ResettableContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of deephaven-engine-api Show documentation
Show all versions of deephaven-engine-api Show documentation
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();
}