Skip navigation links

Oracle® Coherence Java API Reference
Release 12.1.2.0.3

E26043-02


com.tangosol.io
Interface WrapperStreamFactory

All Known Implementing Classes:
AbstractEncryptionFilter, AsymmetricEncryptionFilter, ClusterEncryptionFilter, CompressionFilter, PasswordBasedEncryptionFilter, SymmetricEncryptionFilter

Deprecated. As of Coherence 3.7, deprecated with no replacement.

@Deprecated
public interface WrapperStreamFactory

Provides the means to wrap an InputStream and OutputStream, such that functionality such as compression and encryption can be implemented in a layered, pluggable fashion.

Author:
cp 2002.08.19

Method Summary
 java.io.InputStream getInputStream(java.io.InputStream stream)
          Deprecated. Requests an InputStream that wraps the passed InputStream.
 java.io.OutputStream getOutputStream(java.io.OutputStream stream)
          Deprecated. Requests an OutputStream that wraps the passed OutputStream.

 

Method Detail

getInputStream

java.io.InputStream getInputStream(java.io.InputStream stream)
Deprecated. 
Requests an InputStream that wraps the passed InputStream.
Parameters:
stream - the java.io.InputStream to be wrapped
Returns:
an InputStream that delegates to ("wraps") the passed InputStream

getOutputStream

java.io.OutputStream getOutputStream(java.io.OutputStream stream)
Deprecated. 
Requests an OutputStream that wraps the passed OutputStream.
Parameters:
stream - the java.io.OutputStream to be wrapped
Returns:
an OutputStream that delegates to ("wraps") the passed OutputStream

Skip navigation links

Oracle® Coherence Java API Reference
Release 12.1.2.0.3

E26043-02


Copyright © 2000, 2014, Oracle and/or its affiliates. All rights reserved.