- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for SmbPipeOutputStream (0.11 sec)
-
src/main/java/jcifs/smb/SmbPipeOutputStream.java
* data to SMB named pipes over the network. * * @author mbechler */ public class SmbPipeOutputStream extends SmbFileOutputStream { private final SmbPipeHandleImpl handle; /** * @param handle * @throws SmbException */ SmbPipeOutputStream(final SmbPipeHandleImpl handle, final SmbTreeHandleImpl th) throws CIFSException { super(handle.getPipe(), th, null, 0, 0, 0);Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.1K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbPipeHandleImpl.java
*/ @Override public SmbPipeOutputStream getOutput() throws CIFSException { if (!this.open) { throw new SmbException("Already closed"); } if (this.output != null) { return this.output; } try (SmbTreeHandleImpl th = ensureTreeConnected()) { this.output = new SmbPipeOutputStream(this, th); }Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 10.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbPipeHandleInternal.java
@Override SmbPipeInputStream getInput() throws CIFSException; /** * * @return this pipe's output stream * @throws CIFSException if an error occurs */ @Override SmbPipeOutputStream getOutput() throws CIFSException; /** * Ensures that the tree connection is established and returns it. * * @return tree connectionRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.7K bytes - Viewed (0)