File: nonblocking_resource.rb

package info (click to toggle)
ruby-async-pool 0.3.12-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 188 kB
  • sloc: ruby: 535; makefile: 4
file content (39 lines) | stat: -rw-r--r-- 883 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# frozen_string_literal: true

# Released under the MIT License.
# Copyright, 2022, by Samuel Williams.

require 'async/pool/controller'
require 'async/pool/resource'

class Async::Pool::Controller
	attr :available
end

class NonblockingResource < Async::Pool::Resource
	# Whether this resource can be acquired.
	# @return [Boolean] whether the resource can actually be used.
	def viable?
		Async::Task.current.yield
		super
	end
	
	# Whether the resource has been closed by the user.
	# @return [Boolean] whether the resource has been closed or has failed.
	def closed?
		Async::Task.current.yield
		super
	end
	
	# Close the resource explicitly, e.g. the pool is being closed.
	def close
		Async::Task.current.yield
		super
	end
	
	# Whether this resource can be reused. Used when releasing resources back into the pool.
	def reusable?
		Async::Task.current.yield
		super
	end
end