Class KeysExists

java.lang.Object
com.aerospike.client.reactor.dto.KeysExists

public final class KeysExists
extends Object
Container object for keys identifier and exists flags.
  • Field Summary

    Fields 
    Modifier and Type Field Description
    boolean[] exists  
    com.aerospike.client.Key[] keys
    Unique identifier for record.
  • Constructor Summary

    Constructors 
    Constructor Description
    KeysExists​(com.aerospike.client.Key[] keys, boolean[] exists)  
  • Method Summary

    Modifier and Type Method Description
    Map<com.aerospike.client.Key,​Boolean> asMap()  
    String toString()  

    Methods inherited from class java.lang.Object

    equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • Field Details

    • keys

      public final com.aerospike.client.Key[] keys
      Unique identifier for record.
    • exists

      public final boolean[] exists
  • Constructor Details

    • KeysExists

      public KeysExists​(com.aerospike.client.Key[] keys, boolean[] exists)
  • Method Details