You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** Creates a `FileHandle[F]` from a `java.nio.channels.SeekableByteChannel`. Because a `SeekableByteChannel` doesn't provide all the functionalities required by `FileHandle` some features like locking will be unavailable. */
/** Creates a `FileHandle` for the supplied NIO `SeekableByteChannel`. Because a `SeekableByteChannel` doesn't provide all the functionalities required by `FileHandle` some features like locking will be unavailable. JVM only. */
51
+
defopenSeekableByteChannel(
52
+
channel: F[SeekableByteChannel],
53
+
unsupportedOperationException: =>Throwable
54
+
):Resource[F, FileHandle[F]]
55
+
50
56
/** Gets the contents of the specified directory whose paths match the supplied glob pattern.
51
57
*
52
58
* Example glob patterns: `*.scala`, `*.{scala,java}`
0 commit comments