Interface Atom


public interface Atom
AoDao fetching for dynamic data part here
Author:
Lang
  • Method Summary

    Modifier and Type
    Method
    Description
    io.vertx.core.Future<io.vertx.core.json.JsonArray>
    createAsync(String identifier, io.vertx.core.json.JsonArray data)
     
    io.vertx.core.Future<io.vertx.core.json.JsonObject>
    createAsync(String identifier, io.vertx.core.json.JsonObject data)
     
    io.vertx.core.Future<io.vertx.core.json.JsonObject>
    fetchAsync(String identifier, String key)
     
    io.vertx.core.Future<io.vertx.core.json.JsonArray>
    fetchAsync(String identifier, Set<String> keys)
     
    io.vertx.core.Future<io.vertx.core.json.JsonObject>
    updateAsync(String identifier, String key, io.vertx.core.json.JsonObject data)
     
    io.vertx.core.Future<io.vertx.core.json.JsonArray>
    updateAsync(String identifier, Set<String> keys, io.vertx.core.json.JsonArray data)
     
  • Method Details

    • createAsync

      io.vertx.core.Future<io.vertx.core.json.JsonObject> createAsync(String identifier, io.vertx.core.json.JsonObject data)
    • updateAsync

      io.vertx.core.Future<io.vertx.core.json.JsonObject> updateAsync(String identifier, String key, io.vertx.core.json.JsonObject data)
    • fetchAsync

      io.vertx.core.Future<io.vertx.core.json.JsonObject> fetchAsync(String identifier, String key)
    • createAsync

      io.vertx.core.Future<io.vertx.core.json.JsonArray> createAsync(String identifier, io.vertx.core.json.JsonArray data)
    • updateAsync

      io.vertx.core.Future<io.vertx.core.json.JsonArray> updateAsync(String identifier, Set<String> keys, io.vertx.core.json.JsonArray data)
    • fetchAsync

      io.vertx.core.Future<io.vertx.core.json.JsonArray> fetchAsync(String identifier, Set<String> keys)