Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 11 of 11 for newOutputStream (0.07 sec)

  1. docs/smb3-features/02-persistent-handles-design.md

        private void persistHandle(HandleInfo info) {
            Path handleFile = stateDirectory.resolve(info.createGuid.toString() + ".handle");
            try (ObjectOutputStream oos = new ObjectOutputStream(
                    Files.newOutputStream(handleFile))) {
                oos.writeObject(info);
            } catch (IOException e) {
                log.error("Failed to persist handle: " + info.path, e);
            }
        }
        
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 31.6K bytes
    - Viewed (0)
Back to top