Skip to content

Commit

Permalink
bumped up version, updated readme
Browse files Browse the repository at this point in the history
  • Loading branch information
sacOO7 committed Mar 18, 2018
1 parent 433e9e8 commit 34906b6
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .idea/modules/SocketclusterClientJava.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/modules/SocketclusterClientJava_main.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/modules/SocketclusterClientJava_test.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 10 additions & 2 deletions README.md
Expand Up @@ -20,15 +20,15 @@ For java

```Gradle
dependencies {
compile 'io.github.sac:SocketclusterClientJava:1.7.3'
compile 'io.github.sac:SocketclusterClientJava:1.7.4'
}
```
for sample java examples visit [Java Demo](https://github.com/sacOO7/socketcluster-client-testing/tree/master/src/main/java)

For android

```Gradle
compile ('io.github.sac:SocketclusterClientJava:1.7.3'){
compile ('io.github.sac:SocketclusterClientJava:1.7.4'){
exclude group :'org.json', module: 'json'
}
```
Expand Down Expand Up @@ -97,6 +97,14 @@ Implemented using `BasicListener` interface
socket.connect();
```

- For connecting asynchronously to server:

```java
//This will send websocket handshake request to socketcluster-server
socket.connectAsync();
```


- By default reconnection to server is not enabled , to enable it :

```java
Expand Down
10 changes: 5 additions & 5 deletions build.gradle
Expand Up @@ -16,7 +16,7 @@ allprojects {
}

group 'io.github.sac'
version '1.7.3'
version '1.7.4'


allprojects {
Expand Down Expand Up @@ -44,7 +44,7 @@ publishing {
from components.java
groupId 'io.github.sac'
artifactId 'SocketclusterClientJava'
version '1.7.3'
version '1.7.4'

artifact sourceJar {
classifier "sources"
Expand All @@ -71,9 +71,9 @@ bintray{
publicDownloadNumbers = true

version {
name = '1.7.3'
desc = 'Automatically set authToken as soon as received'
vcsTag = '1.7.3'
name = '1.7.4'
desc = 'Added method to Connect asynchronously with server'
vcsTag = '1.7.4'
}

}
Expand Down

0 comments on commit 34906b6

Please sign in to comment.