WebSocket Client Library for Scala

A simple WebSocket Client for Scala

Лицензия

Лицензия

Группа

Группа

org.jfarcand
Идентификатор

Идентификатор

wcs
Последняя версия

Последняя версия

1.5
Дата

Дата

Тип

Тип

jar
Описание

Описание

WebSocket Client Library for Scala
A simple WebSocket Client for Scala
Система контроля версий

Система контроля версий

https://github.com/jfarcand/WCS.git

Скачать wcs

Имя Файла Размер
wcs-1.5.pom
wcs-1.5.jar 25 KB
wcs-1.5-sources.jar 6 KB
wcs-1.5-javadoc.jar 35 KB
wcs-1.5-all.jar 7 MB
Обзор

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/org.jfarcand/wcs/ -->
<dependency>
    <groupId>org.jfarcand</groupId>
    <artifactId>wcs</artifactId>
    <version>1.5</version>
</dependency>
// https://jarcasting.com/artifacts/org.jfarcand/wcs/
implementation 'org.jfarcand:wcs:1.5'
// https://jarcasting.com/artifacts/org.jfarcand/wcs/
implementation ("org.jfarcand:wcs:1.5")
'org.jfarcand:wcs:jar:1.5'
<dependency org="org.jfarcand" name="wcs" rev="1.5">
  <artifact name="wcs" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.jfarcand', module='wcs', version='1.5')
)
libraryDependencies += "org.jfarcand" % "wcs" % "1.5"
[org.jfarcand/wcs "1.5"]

Зависимости

compile (2)

Идентификатор библиотеки Тип Версия
com.ning : async-http-client jar 1.9.28
org.scala-lang : scala-compiler jar 2.11.7

test (7)

Идентификатор библиотеки Тип Версия
org.scalatest : scalatest_2.11 jar 2.2.4
junit : junit jar 4.8.1
ch.qos.logback : logback-classic jar 0.9.26
org.eclipse.jetty : jetty-servlet jar 7.6.0.v20120127
org.eclipse.jetty : jetty-server jar 7.6.0.v20120127
org.eclipse.jetty : jetty-websocket jar 7.6.0.v20120127
org.eclipse.jetty : jetty-servlets jar 7.6.0.v20120127

Модули Проекта

Данный проект не имеет модулей.

wCS: An Asynchronous WebSocket Client Library for Scala.

A really simple WebSocket library that works with node.js, Atmosphere or any WebSocket server! As simply as

     WebSocket().open("ws://localhost")
        .listener(new TextListener {
            override def onMessage(message: String) {
                // Do something
            }
        })
        .send("Hello World")
        .send("WebSockets are cool!")
        .listener(new BinaryListener {
            override def onMessage(message: Array[Byte]) {
                // Do something
            }
        })
        .send("Hello World".getBytes)

Download using Maven

     <dependency>
         <groupId>org.jfarcand</groupId>
         <artifactId>wcs</artifactId>
         <version>1.4</version>
      </dependency>

or a single artifact that contains all its dependencies

     <dependency>
         <groupId>org.jfarcand</groupId>
         <artifactId>wcs-all</artifactId>
         <version>1.4</version>
      </dependency>

Версии библиотеки

Версия
1.5
1.4
1.3.1
1.3
1.2
1.1
1.0.1
1.0.0