Method: BucketFile#unreserve
- Defined in:
- lib/openc3/utilities/bucket_file_cache.rb
#unreserve ⇒ Object
120 121 122 123 124 125 126 |
# File 'lib/openc3/utilities/bucket_file_cache.rb', line 120 def unreserve @mutex.synchronize do @reservation_count -= 1 delete() if @reservation_count <= 0 return @reservation_count end end |