Skip to content
This repository was archived by the owner on Jul 18, 2024. It is now read-only.

Commit 51d030f

Browse files
committedAug 7, 2017
Make package name more conventional
1 parent ed040f4 commit 51d030f

File tree

66 files changed

+113
-113
lines changed

Some content is hidden

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

66 files changed

+113
-113
lines changed
 

‎README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Working with plain CompletableFutures becomes more difficult when much of the ch
1414
TODO maven instructions
1515

1616
## Iteration
17-
The classes in this package provide ways to generate and consume results asynchronously. The main mechanism the is `AsyncIterator` interface, which can be considered an asynchronous analog of the Stream API. The full [iteration javadocs](https://pages.github.ibm.com/cs-team-atg/async-util/apidocs/com/ibm/async_util/iteration/package-summary.html) contains more information on `AsyncIterator` as well as other asynchronous iteration constructs.
17+
The classes in this package provide ways to generate and consume results asynchronously. The main mechanism the is `AsyncIterator` interface, which can be considered an asynchronous analog of the Stream API. The full [iteration javadocs](https://pages.github.ibm.com/cs-team-atg/async-util/apidocs/com/ibm/asyncutil/iteration/package-summary.html) contains more information on `AsyncIterator` as well as other asynchronous iteration constructs.
1818

1919
Consider the following example from the `Stream` documentation
2020
```java
@@ -114,7 +114,7 @@ CompletionStage<Result> makeRequest(Request request) {
114114
);
115115
}
116116
```
117-
The package provides asynchronous versions of read/write locks, stamped locks, semaphores and named locks. The full [locks javadoc](https://pages.github.ibm.com/cs-team-atg/async-util/apidocs/com/ibm/async_util/locks/package-summary.html) contains more information.
117+
The package provides asynchronous versions of read/write locks, stamped locks, semaphores and named locks. The full [locks javadoc](https://pages.github.ibm.com/cs-team-atg/async-util/apidocs/com/ibm/asyncutil/locks/package-summary.html) contains more information.
118118
## Util
119119
TODO
120120

‎pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44

55
<groupId>com.ibm</groupId>
6-
<artifactId>async-util</artifactId>
6+
<artifactId>asyncutil</artifactId>
77
<version>0.0.1-SNAPSHOT</version>
88
<packaging>jar</packaging>
99

0 commit comments

Comments
 (0)