com.gh.bmd.jrt.channel.StandaloneChannel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jroutine Show documentation
Show all versions of jroutine Show documentation
Parallel programming on the go
/**
* 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 extends INPUT> 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