Class KeysRecords

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

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

    Fields 
    Modifier and Type Field Description
    com.aerospike.client.Key[] keys
    Unique identifiers for records.
    com.aerospike.client.Record[] records
    Records headers and bin data.
  • Constructor Summary

    Constructors 
    Constructor Description
    KeysRecords​(com.aerospike.client.Key[] keys, com.aerospike.client.Record[] records)  
  • Method Summary

    Modifier and Type Method Description
    Map<com.aerospike.client.Key,​com.aerospike.client.Record> 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 identifiers for records.
    • records

      public final com.aerospike.client.Record[] records
      Records headers and bin data.
  • Constructor Details

    • KeysRecords

      public KeysRecords​(com.aerospike.client.Key[] keys, com.aerospike.client.Record[] records)
  • Method Details