パッケージ jcifs
インタフェース SmbPipeHandle
-
- すべてのスーパーインタフェース:
AutoCloseable
- 既知のサブインタフェースのリスト:
SmbPipeHandleInternal
public interface SmbPipeHandle extends AutoCloseable
Handle to an open named pipe- 作成者:
- mbechler
-
-
メソッドの概要
すべてのメソッド インスタンス・メソッド abstractメソッド 修飾子とタイプ メソッド 説明 voidclose()InputStreamgetInput()OutputStreamgetOutput()SmbPipeResourcegetPipe()booleanisOpen()booleanisStale()<T extends SmbPipeHandle>
Tunwrap(Class<T> type)
-
-
-
メソッドの詳細
-
getPipe
SmbPipeResource getPipe()
- 戻り値:
- the pipe
-
getInput
InputStream getInput() throws CIFSException
- 戻り値:
- this pipe's input stream
- 例外:
CIFSException
-
getOutput
OutputStream getOutput() throws CIFSException
- 戻り値:
- this pipe's output stream
- 例外:
CIFSException
-
close
void close() throws CIFSException- 定義:
closeインタフェース内AutoCloseable- 例外:
CIFSException- 関連項目:
AutoCloseable.close()
-
isOpen
boolean isOpen()
- 戻り値:
- whether the FD is open and valid
-
isStale
boolean isStale()
- 戻り値:
- whether the FD was previously open but became invalid
-
unwrap
<T extends SmbPipeHandle> T unwrap(Class<T> type)
- パラメータ:
type-- 戻り値:
- unwrapped instance
-
-