/*
 * Copyright 2014 Red Hat, Inc.
 *
 * Red Hat licenses this file to you 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.
 */

package io.vertx.rxjava.ext.stomp;

import java.util.Map;
import rx.Observable;
import rx.Single;
import io.vertx.ext.stomp.Frame;
import io.vertx.core.Handler;

Class representing a connection between a STOMP client a the server. It keeps a references on the client socket, so let write to this socket.

NOTE: This class has been automatically generated from the original non RX-ified interface using Vert.x codegen.
/** * Class representing a connection between a STOMP client a the server. It keeps a references on the client socket, * so let write to this socket. * * <p/> * NOTE: This class has been automatically generated from the {@link io.vertx.ext.stomp.StompServerConnection original} non RX-ified interface using Vert.x codegen. */
@io.vertx.lang.rx.RxGen(io.vertx.ext.stomp.StompServerConnection.class) public class StompServerConnection { @Override public String toString() { return delegate.toString(); } @Override public boolean equals(Object o) { if (this == o) return true; if (o == null || getClass() != o.getClass()) return false; StompServerConnection that = (StompServerConnection) o; return delegate.equals(that.delegate); } @Override public int hashCode() { return delegate.hashCode(); } public static final io.vertx.lang.rx.TypeArg<StompServerConnection> __TYPE_ARG = new io.vertx.lang.rx.TypeArg<>( obj -> new StompServerConnection((io.vertx.ext.stomp.StompServerConnection) obj), StompServerConnection::getDelegate ); private final io.vertx.ext.stomp.StompServerConnection delegate; public StompServerConnection(io.vertx.ext.stomp.StompServerConnection delegate) { this.delegate = delegate; } public io.vertx.ext.stomp.StompServerConnection getDelegate() { return delegate; }
Writes the given frame to the socket.
Params:
  • frame – the frame, must not be null.
Returns:the current StompServerConnection
/** * Writes the given frame to the socket. * @param frame the frame, must not be <code>null</code>. * @return the current {@link io.vertx.rxjava.ext.stomp.StompServerConnection} */
public io.vertx.rxjava.ext.stomp.StompServerConnection write(Frame frame) { delegate.write(frame); return this; }
Writes the given buffer to the socket. This is a low level API that should be used carefully.
Params:
  • buffer – the buffer
Returns:the current StompServerConnection
/** * Writes the given buffer to the socket. This is a low level API that should be used carefully. * @param buffer the buffer * @return the current {@link io.vertx.rxjava.ext.stomp.StompServerConnection} */
public io.vertx.rxjava.ext.stomp.StompServerConnection write(io.vertx.rxjava.core.buffer.Buffer buffer) { delegate.write(buffer.getDelegate()); return this; }
Returns:the STOMP server serving this connection.
/** * @return the STOMP server serving this connection. */
public io.vertx.rxjava.ext.stomp.StompServer server() { io.vertx.rxjava.ext.stomp.StompServer ret = io.vertx.rxjava.ext.stomp.StompServer.newInstance(delegate.server()); return ret; }
Returns:the STOMP server handler dealing with this connection
/** * @return the STOMP server handler dealing with this connection */
public io.vertx.rxjava.ext.stomp.StompServerHandler handler() { io.vertx.rxjava.ext.stomp.StompServerHandler ret = io.vertx.rxjava.ext.stomp.StompServerHandler.newInstance(delegate.handler()); return ret; }
Returns:the STOMP session id computed when the client has established the connection to the server
/** * @return the STOMP session id computed when the client has established the connection to the server */
public String session() { String ret = delegate.session(); return ret; }
Closes the connection with the client.
/** * Closes the connection with the client. */
public void close() { delegate.close(); }
Sends a `PING` frame to the client. A `PING` frame is a frame containing only EOL.
/** * Sends a `PING` frame to the client. A `PING` frame is a frame containing only <code>EOL</code>. */
public void ping() { delegate.ping(); }
Notifies the connection about server activity (the server has sent a frame). This method is used to handle the heartbeat.
/** * Notifies the connection about server activity (the server has sent a frame). This method is used to handle the * heartbeat. */
public void onServerActivity() { delegate.onServerActivity(); }
Configures the heartbeat.
Params:
  • ping – ping time
  • pong – pong time
  • pingHandler – the ping handler
/** * Configures the heartbeat. * @param ping ping time * @param pong pong time * @param pingHandler the ping handler */
public void configureHeartbeat(long ping, long pong, Handler<io.vertx.rxjava.ext.stomp.StompServerConnection> pingHandler) { delegate.configureHeartbeat(ping, pong, new Handler<io.vertx.ext.stomp.StompServerConnection>() { public void handle(io.vertx.ext.stomp.StompServerConnection event) { pingHandler.handle(io.vertx.rxjava.ext.stomp.StompServerConnection.newInstance(event)); } }); } public static StompServerConnection newInstance(io.vertx.ext.stomp.StompServerConnection arg) { return arg != null ? new StompServerConnection(arg) : null; } }