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

com.linkedin.dagli.objectio.EmptyReader Maven / Gradle / Ivy

Go to download

DAG-oriented machine learning framework for bug-resistant, readable, efficient, maintainable and trivially deployable models in Java and other JVM languages

There is a newer version: 15.0.0-beta9
Show newest version
package com.linkedin.dagli.objectio;

/**
 * The empty reader singleton.
 */
enum EmptyReader implements ObjectReader {
  INSTANCE;

  @Override
  public long size64() {
    return 0;
  }

  @Override
  public ObjectIterator iterator() {
    return ObjectIterator.empty();
  }

  @Override
  public void close() { }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy