Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion context/best-practices.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ Async do |task|
while chunk = socket.gets
queue.push(chunk)
end
end

# After this point, we won't be able to add items to the queue, and popping items will eventually result in nil once all items are dequeued:
queue.close
end
Expand Down
2 changes: 1 addition & 1 deletion guides/best-practices/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ Async do |task|
while chunk = socket.gets
queue.push(chunk)
end
end
# After this point, we won't be able to add items to the queue, and popping items will eventually result in nil once all items are dequeued:
queue.close
end
Expand Down