io.rsocket.RSocket Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rsocket-core Show documentation
Show all versions of rsocket-core Show documentation
Core functionality for the RSocket library
The newest version!
/*
* Copyright 2015-2020 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
*
* 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.rsocket;
import org.reactivestreams.Publisher;
import reactor.core.publisher.Flux;
import reactor.core.publisher.Mono;
/**
* A contract providing different interaction models for RSocket protocol.
*/
public interface RSocket extends Availability, Closeable {
/**
* Fire and Forget interaction model of {@code RSocket}.
*
* @param payload Request payload.
* @return {@code Publisher} that completes when the passed {@code payload} is successfully
* handled, otherwise errors.
*/
default Mono fireAndForget(Payload payload) {
return RSocketAdapter.fireAndForget(payload);
}
/**
* Request-Response interaction model of {@code RSocket}.
*
* @param payload Request payload.
* @return {@code Publisher} containing at most a single {@code Payload} representing the
* response.
*/
default Mono requestResponse(Payload payload) {
return RSocketAdapter.requestResponse(payload);
}
/**
* Request-Stream interaction model of {@code RSocket}.
*
* @param payload Request payload.
* @return {@code Publisher} containing the stream of {@code Payload}s representing the response.
*/
default Flux requestStream(Payload payload) {
return RSocketAdapter.requestStream(payload);
}
/**
* Request-Channel interaction model of {@code RSocket}.
*
* @param payloads Stream of request payloads.
* @return Stream of response payloads.
*/
default Flux requestChannel(Publisher payloads) {
return RSocketAdapter.requestChannel(payloads);
}
/**
* Metadata-Push interaction model of {@code RSocket}.
*
* @param payload Request payloads.
* @return {@code Publisher} that completes when the passed {@code payload} is successfully
* handled, otherwise errors.
*/
default Mono metadataPush(Payload payload) {
return RSocketAdapter.metadataPush(payload);
}
@Override
default double availability() {
return isDisposed() ? 0.0 : 1.0;
}
@Override
default void dispose() {}
@Override
default boolean isDisposed() {
return false;
}
@Override
default Mono onClose() {
return Mono.never();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy