Skip to content

Commit 07cc7d6

Browse files
committed
introduce asynchronous data retrieval
The client now offers getTripsAsync(), getStopsAsync() and getMessagesAsync() that return a Future of the requested objects. The synchronous methods are still present, but only wrap the new ones internally.
1 parent 702247a commit 07cc7d6

File tree

5 files changed

+293
-56
lines changed

5 files changed

+293
-56
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# Changelog
22
All notable changes to this project will be documented in this file.
33

4+
## unreleased
5+
6+
### Features
7+
* New methods for asynchronous trip, stop and message retrieval (#15)
8+
49
## 2.0.0 - 2021-01-30
510
### Breaking
611
* Java 11 or later required

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>de.stklcode.pubtrans</groupId>
88
<artifactId>juraclient</artifactId>
9-
<version>2.0.0</version>
9+
<version>2.1.0-SNAPSHOT</version>
1010

1111
<properties>
1212
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -56,7 +56,7 @@
5656
<dependency>
5757
<groupId>org.junit.jupiter</groupId>
5858
<artifactId>junit-jupiter</artifactId>
59-
<version>5.7.0</version>
59+
<version>5.7.1</version>
6060
<scope>test</scope>
6161
</dependency>
6262
<dependency>

0 commit comments

Comments
 (0)