-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixup! refactor: decouple HTTP and WebSocket engines
- Loading branch information
Showing
12 changed files
with
99 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,21 @@ | ||
GROUP=io.ably | ||
VERSION_NAME=1.2.42 | ||
|
||
POM_DESCRIPTION=Realtime and REST client library SDK for the Ably platform | ||
POM_INCEPTION_YEAR=2015 | ||
POM_URL=https://github.com/ably/ably-java | ||
POM_SCM_URL=https://github.com/ably/ably-java | ||
POM_SCM_CONNECTION=scm:git:https://github.com/ably/ably-java.git | ||
POM_SCM_DEV_CONNECTION=scm:git:[email protected]:ably/ably-java.git | ||
|
||
POM_LICENSE_NAME=The Apache Software License, Version 2.0 | ||
POM_LICENSE_URL=https://raw.github.com/ably/ably-java/main/LICENSE | ||
POM_LICENSE_DIST=repo | ||
|
||
POM_DEVELOPER_ID=ably | ||
POM_DEVELOPER_NAME=Ably | ||
POM_DEVELOPER_URL=https://github.com/ably/ | ||
SONATYPE_STAGING_PROFILE=io.ably | ||
|
||
org.gradle.jvmargs=-Xmx1536M | ||
android.useAndroidX=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 7 additions & 0 deletions
7
network-client-core/src/main/java/io/ably/lib/network/FailedConnectionException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package io.ably.lib.network; | ||
|
||
public class FailedConnectionException extends RuntimeException { | ||
public FailedConnectionException(Throwable cause) { | ||
super(cause); | ||
} | ||
} |
7 changes: 0 additions & 7 deletions
7
network-client-core/src/main/java/io/ably/lib/network/HttpConnectionException.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters