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

water.api.NodePersistentStorageV3 Maven / Gradle / Ivy

package water.api;

import water.Iced;

/**
* Created by rpeck on 11/30/14.
*/
public class NodePersistentStorageV3 extends RequestSchema {
  public static class NodePersistentStorageEntryV3 extends Schema {
    @API(help="Category name", required=true, direction=API.Direction.OUTPUT)
    String category;

    @API(help="Key name", required=true, direction=API.Direction.OUTPUT)
    String name;

    @API(help="Size in bytes of value", required=true, direction=API.Direction.OUTPUT)
    long size;

    @API(help="Epoch time in milliseconds of when the value was written", required=true, direction=API.Direction.OUTPUT)
    long timestamp_millis;
  }

  @API(help="Category name", required=false, direction=API.Direction.INOUT)
  String category;

  @API(help="Key name", required=false, direction=API.Direction.INOUT)
  String name;

  @API(help="Value", required=false, direction=API.Direction.INOUT)
  String value;

  @API(help="Configured", required=false, direction=API.Direction.OUTPUT)
  boolean configured;

  @API(help="Exists", required=false, direction=API.Direction.OUTPUT)
  boolean exists;

  @API(help="List of entries", required=false, direction=API.Direction.OUTPUT)
  NodePersistentStorageEntryV3[] entries;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy