File tree 2 files changed +6
-7
lines changed
2 files changed +6
-7
lines changed Original file line number Diff line number Diff line change 1
1
# JavaPhoenixClient
2
2
3
- [ ![ Download] ( https://api.bintray.com/packages/drees/java-phoenix-client/JavaPhoenixClient/images/download.svg ) ] ( https://bintray.com/drees/java-phoenix-client/JavaPhoenixClient/_latestVersion )
3
+ [ ![ Download] ( https://api.bintray.com/packages/drees/java-phoenix-client/JavaPhoenixClient/images/download.svg ) ] ( https://bintray.com/drees/java-phoenix-client/JavaPhoenixClient/_latestVersion )
4
4
[ ![ Build Status] ( https://travis-ci.com/dsrees/JavaPhoenixClient.svg?branch=master )] ( https://travis-ci.com/dsrees/JavaPhoenixClient )
5
5
6
6
@@ -44,9 +44,9 @@ You can also inject your own OkHttp Client into the Socket to provide your own c
44
44
val client = OkHttpClient .Builder ()
45
45
.connectTimeout(1000 , TimeUnit .MILLISECONDS )
46
46
.build()
47
-
47
+
48
48
val params = hashMapOf(" token" to " abc123" )
49
- val socket = PhxSocket (" http://localhost:4000/socket/websocket" ,
49
+ val socket = PhxSocket (" http://localhost:4000/socket/websocket" ,
50
50
multipleParams,
51
51
client)
52
52
```
@@ -55,7 +55,7 @@ val socket = PhxSocket("http://localhost:4000/socket/websocket",
55
55
### Installation
56
56
57
57
JavaPhoenixClient is hosted on JCenter. You'll need to make sure you declare ` jcenter() ` as one of your repositories
58
-
58
+
59
59
```
60
60
repositories {
61
61
jcenter()
@@ -65,7 +65,7 @@ repositories {
65
65
and then add the library. See [ releases] ( https://github.com/dsrees/JavaPhoenixClient/releases ) for the latest version
66
66
``` $xslt
67
67
dependencies {
68
- implementation 'com.github.dsrees:JavaPhoenixClient:0.1.4 '
68
+ implementation 'com.github.dsrees:JavaPhoenixClient:0.1.5 '
69
69
}
70
70
```
71
71
@@ -75,4 +75,3 @@ Please submit in issue if you have any problems!
75
75
76
76
77
77
This library is built to mirror the [ phoenix.js] ( https://hexdocs.pm/phoenix/js/ ) and [ SwiftPhoenixClient] ( https://github.com/davidstump/SwiftPhoenixClient ) libraries.
78
-
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ plugins {
8
8
}
9
9
10
10
group ' com.github.dsrees'
11
- version ' 0.1.4 '
11
+ version ' 0.1.5 '
12
12
13
13
sourceCompatibility = 1.8
14
14
You can’t perform that action at this time.
0 commit comments