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

dev.responsive.kafka.internal.stores.WindowOperations Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2024 Responsive Computing, Inc.
 *
 * This source code is licensed under the Responsive Business Source License Agreement v1.0
 * available at:
 *
 * https://www.responsive.dev/legal/responsive-bsl-10
 *
 * This software requires a valid Commercial License Key for production use. Trial and commercial
 * licenses can be obtained at https://www.responsive.dev
 */

package dev.responsive.kafka.internal.stores;

import java.io.Closeable;
import java.util.Collection;
import org.apache.kafka.clients.consumer.ConsumerRecord;
import org.apache.kafka.common.utils.Bytes;
import org.apache.kafka.streams.kstream.Windowed;
import org.apache.kafka.streams.state.KeyValueIterator;
import org.apache.kafka.streams.state.WindowStoreIterator;

public interface WindowOperations extends Closeable {

  long initialStreamTime();

  void put(final Bytes key, final byte[] value, final long windowStartTime);

  void delete(final Bytes key, final long windowStartTime);

  byte[] fetch(final Bytes key, final long windowStartTime);

  WindowStoreIterator fetch(
      final Bytes key,
      final long timeFrom,
      final long timeTo
  );

  KeyValueIterator, byte[]> fetch(
      final Bytes keyFrom,
      final Bytes keyTo,
      final long timeFrom,
      final long timeTo
  );

  KeyValueIterator, byte[]> fetchAll(
      final long timeFrom,
      final long timeTo
  );

  KeyValueIterator, byte[]> all();

  WindowStoreIterator backwardFetch(
      final Bytes key,
      final long timeFrom,
      final long timeTo
  );

  KeyValueIterator, byte[]> backwardFetch(
      final Bytes keyFrom,
      final Bytes keyTo,
      final long timeFrom,
      final long timeTo
  );

  KeyValueIterator, byte[]> backwardFetchAll(
      final long timeFrom,
      final long timeTo
  );

  KeyValueIterator, byte[]> backwardAll();

  long restoreBatch(
      final Collection> records,
      final long streamTimeMs
  );

  @Override
  void close();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy