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

Commit 7cd027a

Browse files
committed
Update links to public repo
1 parent f569b13 commit 7cd027a

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Reporting bugs
2-
If you are a user and you find a bug, please submit an [issue](https://github.ibm.com/cs-team-atg/async-util/issues). Please try to provide sufficient information for someone else to reproduce the issue.
2+
If you are a user and you find a bug, please submit an [issue](https://github.com/IBM/java-async-util/issues). Please try to provide sufficient information for someone else to reproduce the issue.
33

44
# Pull requests
55
Pull requests for features or bug fixes are welcome. If you are working on a large contribution, please file an issue first. Feel free to ask for help or ask questions about a possible contribution.

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The library is broken up into three packages:
88
* [Iteration](#iteration)
99
* [Util](#util)
1010

11-
To get started, you can browse the [javadocs](https://pages.github.ibm.com/cs-team-atg/async-util/apidocs/overview-summary.html) or walk through some [example code](https://github.ibm.com/cs-team-atg/async-util/blob/master/asyncutil/src/test/java/com/ibm/asyncutil/examples/nio/nio.md).
11+
To get started, you can browse the [javadocs](https://ibm.github.io/java-async-util/apidocs/overview-summary.html) or walk through some [example code](asyncutil/src/test/java/com/ibm/asyncutil/examples/nio/nio.md).
1212

1313
## Downloading
1414
TODO maven instructions
@@ -70,10 +70,10 @@ CompletionStage<Result> makeRequest(Request request) {
7070
);
7171
}
7272
```
73-
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.
73+
The package provides asynchronous versions of read/write locks, stamped locks, semaphores and named locks. The full [locks javadoc](https://ibm.github.io/java-async-util/apidocs/com/ibm/asyncutil/locks/package-summary.html) contains more information.
7474

7575
## Iteration
76-
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.
76+
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://ibm.github.io/java-async-util/apidocs/com/ibm/asyncutil/iteration/package-summary.html) contains more information on `AsyncIterator` as well as other asynchronous iteration constructs.
7777

7878
Consider the following example from the `Stream` documentation
7979
```java
@@ -117,7 +117,7 @@ sum.thenRun(() -> widgets.terminate());
117117
```
118118

119119
## Util
120-
The util package contains interfaces and static functions for commonly reimplmented `CompletionStage` patterns. The best way to discover them all is to browse [the javadoc](https://pages.github.ibm.com/cs-team-atg/async-util/apidocs/com/ibm/asyncutil/util/package-summary.html).
120+
The util package contains interfaces and static functions for commonly reimplmented `CompletionStage` patterns. The best way to discover them all is to browse [the javadoc](https://ibm.github.io/java-async-util/apidocs/com/ibm/asyncutil/util/package-summary.html).
121121

122122
### `StageSupport`
123123
StageSupport contains miscellaneous utility functions, including methods to create already completed exceptional stages, common transformations, and methods for working with resources that need to be asynchronously released.

asyncutil-flow/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Introduction
44

5-
This optional module allows Java 9 users to translate the iteration primitive provided by asyncutil to and from [java.util.Flow constructs](https://docs.oracle.com/javase/9/docs/api/java/util/concurrent/Flow.html). An asyncutil [AsyncIterator](https://pages.github.ibm.com/cs-team-atg/async-util/apidocs/com/ibm/asyncutil/iteration/AsyncIterator.html) can be used as the source for a `Flow.Publisher`, and a `Flow.Publisher` can be consumed via an `AsyncIterator`.
5+
This optional module allows Java 9 users to translate the iteration primitive provided by asyncutil to and from [java.util.Flow constructs](https://docs.oracle.com/javase/9/docs/api/java/util/concurrent/Flow.html). An asyncutil [AsyncIterator](https://ibm.github.io/java-async-util/apidocs/com/ibm/asyncutil/iteration/AsyncIterator.html) can be used as the source for a `Flow.Publisher`, and a `Flow.Publisher` can be consumed via an `AsyncIterator`.
66

77
## Downloading
88
TODO maven instructions

0 commit comments

Comments
 (0)