Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 363 Bytes

foxx.md

File metadata and controls

14 lines (11 loc) · 363 Bytes

Foxx

##execute a service

  Request request = new Request("mydb", RequestType.GET, "/my/foxx/service")
  Response response = arangoDB.execute(request);
 

##execute a service (async)

  Request request = new Request("mydb", RequestType.GET, "/my/foxx/service")
  CompletableFuture<Response> response = arangoDB.executeAsync(request);