use of com.arangodb.ArangoDBAsync in project jnosql-diana-driver by eclipse.
the class ArangoDBDocumentConfiguration method get.
@Override
public ArangoDBDocumentCollectionManagerFactory get(Settings settings) throws NullPointerException {
requireNonNull(settings, "settings is required");
ArangoDB arangoDB = getArangoDB(settings);
ArangoDBAsync arangoDBAsync = getArangoDBAsync(settings);
return new ArangoDBDocumentCollectionManagerFactory(arangoDB, arangoDBAsync);
}
Aggregations