org.springframework.integration.rsocket.RSocketConnectedEvent Maven / Gradle / Ivy
Show all versions of spring-integration-rsocket Show documentation
/*
* Copyright 2019 the original author or authors.
*
* 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
*
* https://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 org.springframework.integration.rsocket;
import java.util.Map;
import org.springframework.core.io.buffer.DataBuffer;
import org.springframework.integration.events.IntegrationEvent;
import org.springframework.messaging.rsocket.RSocketRequester;
/**
* An {@link IntegrationEvent} to indicate that {@code RSocket} from the client is connected
* to the server.
*
* This event can be used for mapping {@link RSocketRequester} to the client by the
* {@code headers} meta-data or connect payload {@code data}.
*
* @author Artem Bilan
*
* @since 5.2
*
* @see IntegrationRSocketMessageHandler
*/
@SuppressWarnings("serial")
public class RSocketConnectedEvent extends IntegrationEvent {
private final Map headers;
private final DataBuffer data;
private final RSocketRequester requester;
public RSocketConnectedEvent(Object source, Map headers, DataBuffer data,
RSocketRequester requester) {
super(source);
this.headers = headers;
this.data = data;
this.requester = requester;
}
public Map getHeaders() {
return this.headers;
}
public DataBuffer getData() {
return this.data;
}
public RSocketRequester getRequester() {
return this.requester;
}
@Override
public String toString() {
return "RSocketConnectedEvent{" +
"headers=" + this.headers +
", data=" + this.data +
", requester=" + this.requester +
'}';
}
}