/*
* Copyright 2014 Red Hat, Inc.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* and Apache License v2.0 which accompanies this distribution.
*
* The Eclipse Public License is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* The Apache License v2.0 is available at
* http://www.opensource.org/licenses/apache2.0.php
*
* You may elect to redistribute this code under either of these licenses.
*/
package io.vertx.ext.eventbus.bridge.tcp;
import io.vertx.codegen.annotations.CacheReturn;
import io.vertx.codegen.annotations.Fluent;
import io.vertx.codegen.annotations.VertxGen;
import io.vertx.core.Future;
import io.vertx.core.json.JsonObject;
import io.vertx.core.net.NetSocket;
Represents an event that occurs on the event bus bridge.
Please consult the documentation for a full explanation.
Author: Tim Fox
/**
* Represents an event that occurs on the event bus bridge.
* <p>
* Please consult the documentation for a full explanation.
*
* @author <a href="http://tfox.org">Tim Fox</a>
*/
@VertxGen
public interface BridgeEvent extends io.vertx.ext.bridge.BaseBridgeEvent {
Get the raw JSON message for the event. This will be null for SOCKET_CREATED or SOCKET_CLOSED events as there is
no message involved.
Params: - message – the raw message
Returns: this reference, so it can be used fluently
/**
* Get the raw JSON message for the event. This will be null for SOCKET_CREATED or SOCKET_CLOSED events as there is
* no message involved.
*
* @param message the raw message
* @return this reference, so it can be used fluently
*/
@Fluent
BridgeEvent setRawMessage(JsonObject message);
Get the SockJSSocket instance corresponding to the event
Returns: the SockJSSocket instance
/**
* Get the SockJSSocket instance corresponding to the event
*
* @return the SockJSSocket instance
*/
@CacheReturn
NetSocket socket();
}