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

com.tangosol.util.stream.BaseRemoteStream Maven / Gradle / Ivy

There is a newer version: 24.09
Show newest version
/*
 * Copyright (c) 2000, 2020, Oracle and/or its affiliates.
 *
 * Licensed under the Universal Permissive License v 1.0 as shown at
 * http://oss.oracle.com/licenses/upl.
 */
package com.tangosol.util.stream;

import java.util.stream.BaseStream;

/**
 * An extension of {@link java.util.stream.BaseStream} that adds support for
 * the {@link RemotePipeline} retrieval.
 *
 * @param  the type of the stream elements
 * @param  the type of of the stream implementing {@code BaseStream}
 *
 * @author as  2014.08.26          
 * @since 12.2.1
 */
public interface BaseRemoteStream>
        extends BaseStream
    {
    /**
     * Return a pipeline of intermediate operations for this stream.
     * 

* This is a terminal operation. * * @return a pipeline of intermediate operations for this stream */ RemotePipeline pipeline(); }