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.
 * 

* An 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 another source. 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 public StandaloneInput input(); /** * Returns the output end of this channel. * * @return the output channel. */ @Nonnull public StandaloneOutput output(); /** * Interface defining a standalone channel input. * * @param the input data type. */ public interface StandaloneInput extends InputChannel { @Nonnull @Override public StandaloneInput after(@Nonnull TimeDuration delay); @Nonnull @Override public StandaloneInput after(long delay, @Nonnull TimeUnit timeUnit); @Nonnull @Override public StandaloneInput now(); @Nonnull @Override public StandaloneInput pass(@Nullable OutputChannel channel); @Nonnull @Override public StandaloneInput pass(@Nullable Iterable inputs); @Nonnull @Override public StandaloneInput pass(@Nullable INPUT input); @Nonnull @Override public 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. */ public void close(); } /** * Interface defining a standalone channel output. * * @param the output data type. */ public interface StandaloneOutput extends OutputChannel { @Nonnull @Override public StandaloneOutput afterMax(@Nonnull TimeDuration timeout); @Nonnull @Override public StandaloneOutput afterMax(long timeout, @Nonnull TimeUnit timeUnit); @Nonnull @Override public StandaloneOutput bind(@Nonnull OutputConsumer consumer); @Nonnull @Override public StandaloneOutput eventually(); @Nonnull @Override public StandaloneOutput eventuallyAbort(); @Nonnull @Override public StandaloneOutput eventuallyDeadlock(); @Nonnull @Override public StandaloneOutput eventuallyExit(); @Nonnull @Override public StandaloneOutput immediately(); @Nonnull @Override public StandaloneOutput readAllInto(@Nonnull Collection results); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy