Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for WriterThread (0.05 sec)

  1. src/main/java/jcifs/smb1/smb1/SmbFile.java

        }
    
        class WriterThread extends Thread {
            byte[] b;
            int n;
            long off;
            boolean ready;
            SmbFile dest;
            SmbException e = null;
            boolean useNTSmbs;
            SmbComWriteAndX reqx;
            SmbComWrite req;
            ServerMessageBlock resp;
    
            WriterThread() throws SmbException {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbFile.java

                 */
                if ( this.fileLocator.overlaps(dest.getLocator()) ) {
                    throw new SmbException("Source and destination paths overlap.");
                }
    
                WriterThread w = new WriterThread();
                w.setDaemon(true);
    
                try {
                    w.start();
                    // use commonly acceptable buffer size
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (0)
Back to top