java.lang.Object
io.xpipe.core.store.OutputStreamStore
- All Implemented Interfaces:
DataStore,StreamDataStore
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleancanOpen()Checks whether this store can be opened.getFlow()booleanIndicates whether this data store can only be accessed by the current running application.Opens an input stream that can be used to read its data.Opens an output stream that can be used to write data.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface io.xpipe.core.store.DataStore
asNeeded, checkComplete, isComplete, isInStorageMethods inherited from interface io.xpipe.core.store.StreamDataStore
openBufferedInput
-
Constructor Details
-
OutputStreamStore
-
-
Method Details
-
isContentExclusivelyAccessible
public boolean isContentExclusivelyAccessible()Description copied from interface:StreamDataStoreIndicates whether this data store can only be accessed by the current running application. One example are standard in and standard out stores.- Specified by:
isContentExclusivelyAccessiblein interfaceStreamDataStore- See Also:
-
getFlow
- Specified by:
getFlowin interfaceStreamDataStore
-
openInput
Description copied from interface:StreamDataStoreOpens an input stream that can be used to read its data.- Specified by:
openInputin interfaceStreamDataStore
-
openOutput
Description copied from interface:StreamDataStoreOpens an output stream that can be used to write data.- Specified by:
openOutputin interfaceStreamDataStore
-
canOpen
public boolean canOpen()Description copied from interface:StreamDataStoreChecks whether this store can be opened. This can be not the case for example if the underlying store does not exist.- Specified by:
canOpenin interfaceStreamDataStore
-