stylefruits.gniazdo

https://github.com/stylefruits/gniazdo.git

git clone 'https://github.com/stylefruits/gniazdo.git'

(ql:quickload :stylefruits.gniazdo)
160

Gniazdo

Gniazdo is a WebSocket client for Clojure. Its main purpose is testing WebSockets services without a browser. It uses Jetty's implementation of the WebSocket protocol. It supports both ws:// and wss:// schemas.

Build Status

Usage

Add the following artifact to :dependencies in your project.clj:

Latest version

Here's a minimal usage example:

(require '[gniazdo.core :as ws])
(def socket
  (ws/connect
    "ws://example.org:1234/socket"
    :on-receive #(prn 'received %)))
(ws/send-msg socket "hello")
(ws/close socket)

(gniazdo.core/connect uri & options)

gniazdo.core/connect opens a WebSocket connection using a given uri. The following options/callbacks are available:

gniazdo.core/connect returns an opaque representation of the connection.

See also WebSocketListener.

(gniazdo.core/send-msg [conn message])

gniazdo.core/send-msg sends a given message using a connection established with gniazdo.core/connect. The message should be a String, byte[] or java.nio.ByteBuffer.

(gniazdo.core/close [conn])

gniazdo.core/close closes a connection established with gniazdo.core/connect.

(gniazdo.core/client [] [uri])

gniazdo.core/client creates an instance of WebSocketClient, optionally based on the given URI. If secure WebSocket connections are desired, an SSL-capable instance will be created.

Note that the resulting client has to be started ((.start client)) before it can be used with gniazdo.core/connect.

In order to use an HTTP proxy configure an HttpClient and create an instance of WebSocketClient directly.

License

Copyright 2013 stylefruits GmbH

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.