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
Copy file name to clipboardExpand all lines: Sources/NIO/FileHandle.swift
+2-2
Original file line number
Diff line number
Diff line change
@@ -134,7 +134,7 @@ extension NIOFileHandle {
134
134
}
135
135
}
136
136
137
-
/// Open a new `NIOFileHandle`.
137
+
/// Open a new `NIOFileHandle`. This operation is blocking.
138
138
///
139
139
/// - parameters:
140
140
/// - path: The path of the file to open. The ownership of the file descriptor is transferred to this `NIOFileHandle` and so it will be closed once `close` is called.
@@ -145,7 +145,7 @@ extension NIOFileHandle {
145
145
self.init(descriptor: fd)
146
146
}
147
147
148
-
/// Open a new `NIOFileHandle`.
148
+
/// Open a new `NIOFileHandle`. This operation is blocking.
149
149
///
150
150
/// - parameters:
151
151
/// - path: The path of the file to open. The ownership of the file descriptor is transferred to this `NIOFileHandle` and so it will be closed once `close` is called.
0 commit comments