All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.gh.bmd.jrt.channel.StandaloneChannel Maven / Gradle / Ivy

There is a newer version: 5.9.0
Show newest version
/*
 * 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 com.gh.bmd.jrt.channel;

import com.gh.bmd.jrt.time.TimeDuration;

import java.util.Collection;
import java.util.concurrent.TimeUnit;

import javax.annotation.Nonnull;
import javax.annotation.Nullable;

/**
 * Interface defining a standalone channel.
 * 

* A standalone channel is useful to make other asynchronous tasks communicate with a routine.
* The channel output can be passed to a routine input channel in order to feed it with data coming * asynchronously from other sources. Note however, that in both cases the * close() method must be called to correctly terminate the invocation * lifecycle. *

* Created by davide on 10/25/14. * * @param the data type. */ public interface StandaloneChannel { /** * Returns the input end of this channel. * * @return the input channel. */ @Nonnull StandaloneInput input(); /** * Returns the output end of this channel. * * @return the output channel. */ @Nonnull StandaloneOutput output(); /** * Interface defining a standalone channel input. * * @param the input data type. */ interface StandaloneInput extends InputChannel { /** * {@inheritDoc} */ @Nonnull StandaloneInput after(@Nonnull TimeDuration delay); /** * {@inheritDoc} */ @Nonnull StandaloneInput after(long delay, @Nonnull TimeUnit timeUnit); /** * {@inheritDoc} */ @Nonnull StandaloneInput now(); /** * {@inheritDoc} */ @Nonnull StandaloneInput pass(@Nullable OutputChannel channel); /** * {@inheritDoc} */ @Nonnull StandaloneInput pass(@Nullable Iterable inputs); /** * {@inheritDoc} */ @Nonnull StandaloneInput pass(@Nullable INPUT input); /** * {@inheritDoc} */ @Nonnull StandaloneInput pass(@Nullable INPUT... inputs); /** * Closes the channel input.
* If the channel is already close, this method has no effect. *

* Note that this method must be always called when done with the channel. */ void close(); } /** * Interface defining a standalone channel output. * * @param the output data type. */ interface StandaloneOutput extends OutputChannel { /** * {@inheritDoc} */ @Nonnull StandaloneOutput afterMax(@Nonnull TimeDuration timeout); /** * {@inheritDoc} */ @Nonnull StandaloneOutput afterMax(long timeout, @Nonnull TimeUnit timeUnit); /** * {@inheritDoc} */ @Nonnull StandaloneOutput bind(@Nonnull OutputConsumer consumer); /** * {@inheritDoc} */ @Nonnull StandaloneOutput eventually(); /** * {@inheritDoc} */ @Nonnull StandaloneOutput eventuallyAbort(); /** * {@inheritDoc} */ @Nonnull StandaloneOutput eventuallyDeadlock(); /** * {@inheritDoc} */ @Nonnull StandaloneOutput eventuallyExit(); /** * {@inheritDoc} */ @Nonnull StandaloneOutput immediately(); /** * {@inheritDoc} */ @Nonnull StandaloneOutput readAllInto(@Nonnull Collection results); /** * {@inheritDoc} */ @Nonnull StandaloneOutput unbind(@Nullable OutputConsumer consumer); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy