Skip to content

Commit 76aa1e1

Browse files
authored
merged async driver (#313)
* copied async driver * cursor streamRemaining ordered * v6.1.1 * bugfix method chaining in IndexOptions
1 parent 73b2805 commit 76aa1e1

File tree

64 files changed

+13394
-38
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+13394
-38
lines changed

ChangeLog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
66

77
## [Unreleased]
88

9+
## [6.1.1] - 2019-09-05
10+
11+
- merged async driver
12+
- bugfix method chaining in IndexOptions
13+
914
## [6.1.0] - 2019-08-29
1015

1116
### Added

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>com.arangodb</groupId>
77
<artifactId>arangodb-java-driver</artifactId>
8-
<version>6.1.0</version>
8+
<version>6.1.1</version>
99
<inceptionYear>2016</inceptionYear>
1010
<packaging>jar</packaging>
1111

src/main/java/com/arangodb/async/ArangoCollectionAsync.java

Lines changed: 686 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
/*
2+
* DISCLAIMER
3+
*
4+
* Copyright 2016 ArangoDB GmbH, Cologne, Germany
5+
*
6+
* Licensed under the Apache License, Version 2.0 (the "License");
7+
* you may not use this file except in compliance with the License.
8+
* You may obtain a copy of the License at
9+
*
10+
* http://www.apache.org/licenses/LICENSE-2.0
11+
*
12+
* Unless required by applicable law or agreed to in writing, software
13+
* distributed under the License is distributed on an "AS IS" BASIS,
14+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+
* See the License for the specific language governing permissions and
16+
* limitations under the License.
17+
*
18+
* Copyright holder is ArangoDB GmbH, Cologne, Germany
19+
*/
20+
21+
package com.arangodb.async;
22+
23+
import com.arangodb.ArangoCursor;
24+
25+
import java.util.stream.Stream;
26+
27+
/**
28+
* @author Mark Vollmary
29+
*/
30+
public interface ArangoCursorAsync<T> extends ArangoCursor<T> {
31+
32+
Stream<T> streamRemaining();
33+
34+
}

0 commit comments

Comments
 (0)