- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for getNotifyBufferSize (0.13 sec)
-
src/main/java/jcifs/SmbWatchHandle.java
* this method should provide all changes (size of that buffer can be adjusted through * {@link jcifs.Configuration#getNotifyBufferSize()}). * If the server cannot fulfill the request because the changes did not fit the buffer * it will return an empty list of changes. * * @return changes since the last invocation
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/notify/Smb2ChangeNotifyRequest.java
* @param config * @param fileId */ public Smb2ChangeNotifyRequest ( Configuration config, byte[] fileId ) { super(config, SMB2_CHANGE_NOTIFY); this.outputBufferLength = config.getNotifyBufferSize(); this.fileId = fileId; } /** * @param notifyFlags * the notifyFlags to set */ public void setNotifyFlags ( int notifyFlags ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/nt/NtTransNotifyChange.java
this.watchTree = watchTree; this.setupCount = 0x04; this.totalDataCount = 0; this.maxDataCount = 0; this.maxParameterCount = config.getNotifyBufferSize(); this.maxSetupCount = (byte) 0x00; } @Override protected int writeSetupWireFormat ( byte[] dst, int dstIndex ) { int start = dstIndex;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.2K bytes - Viewed (0)