パッケージ jcifs
インタフェース SmbPipeResource
-
- すべてのスーパーインタフェース:
AutoCloseable,SmbResource
- 既知の実装クラスのリスト:
SmbNamedPipe
public interface SmbPipeResource extends SmbResource
SMB resource respresenting a named pipe- 作成者:
- mbechler
-
-
フィールドの概要
フィールド 修飾子とタイプ フィールド 説明 static intPIPE_TYPE_CALLPipe operations should behave like theCallNamedPipeWin32 Named Pipe function.static intPIPE_TYPE_DCE_TRANSACTPipe is used for DCEstatic intPIPE_TYPE_RDONLYThe pipe should be opened read-only.static intPIPE_TYPE_RDWRThe pipe should be opened for both reading and writing.static intPIPE_TYPE_TRANSACTPipe operations should behave like theTransactNamedPipeWin32 Named Pipe function.static intPIPE_TYPE_UNSHAREDPipe should use it's own exclusive transport connectionstatic intPIPE_TYPE_WRONLYThe pipe should be opened only for writing.
-
メソッドの概要
すべてのメソッド インスタンス・メソッド abstractメソッド 修飾子とタイプ メソッド 説明 intgetPipeType()SmbPipeHandleopenPipe()Create a pipe handle-
インタフェースから継承されたメソッド jcifs.SmbResource
canRead, canWrite, children, children, children, children, close, copyTo, createNewFile, createTime, delete, exists, fileIndex, getAttributes, getContext, getDiskFreeSpace, getLocator, getName, getOwnerGroup, getOwnerGroup, getOwnerUser, getOwnerUser, getSecurity, getSecurity, getShareSecurity, getType, isDirectory, isFile, isHidden, lastAccess, lastModified, length, mkdir, mkdirs, openInputStream, openInputStream, openInputStream, openOutputStream, openOutputStream, openOutputStream, openOutputStream, openRandomAccess, openRandomAccess, renameTo, renameTo, resolve, setAttributes, setCreateTime, setFileTimes, setLastAccess, setLastModified, setReadOnly, setReadWrite, watch
-
-
-
-
フィールドの詳細
-
PIPE_TYPE_RDONLY
static final int PIPE_TYPE_RDONLY
The pipe should be opened read-only.- 関連項目:
- 定数フィールド値
-
PIPE_TYPE_WRONLY
static final int PIPE_TYPE_WRONLY
The pipe should be opened only for writing.- 関連項目:
- 定数フィールド値
-
PIPE_TYPE_RDWR
static final int PIPE_TYPE_RDWR
The pipe should be opened for both reading and writing.- 関連項目:
- 定数フィールド値
-
PIPE_TYPE_CALL
static final int PIPE_TYPE_CALL
Pipe operations should behave like theCallNamedPipeWin32 Named Pipe function.- 関連項目:
- 定数フィールド値
-
PIPE_TYPE_TRANSACT
static final int PIPE_TYPE_TRANSACT
Pipe operations should behave like theTransactNamedPipeWin32 Named Pipe function.- 関連項目:
- 定数フィールド値
-
PIPE_TYPE_DCE_TRANSACT
static final int PIPE_TYPE_DCE_TRANSACT
Pipe is used for DCE- 関連項目:
- 定数フィールド値
-
PIPE_TYPE_UNSHARED
static final int PIPE_TYPE_UNSHARED
Pipe should use it's own exclusive transport connection- 関連項目:
- 定数フィールド値
-
-
メソッドの詳細
-
getPipeType
int getPipeType()
- 戻り値:
- the type of the pipe
-
openPipe
SmbPipeHandle openPipe()
Create a pipe handle- 戻り値:
- pipe handle, needs to be closed when finished
-
-