Class | PhusionPassenger::AbstractServerCollection |
In: |
lib/phusion_passenger/abstract_server_collection.rb
|
Parent: | Object |
This class maintains a collection of AbstractServer objects. One can add new AbstractServer objects, or look up existing ones via a key. AbstractServerCollection also automatically takes care of cleaning up AbstractServers that have been idle for too long.
This class exists because both SpawnManager and ClassicRails::FrameworkSpawner need this kind of functionality. SpawnManager maintains a collection of ClassicRails::FrameworkSpawner and ClassicRails::ApplicationSpawner objects, while ClassicRails::FrameworkSpawner maintains a collection of ClassicRails::ApplicationSpawner objects.
This class is thread-safe as long as the specified thread-safety rules are followed.
next_cleaning_time | [R] |
Tell the cleaner thread to check the collection as soon as possible, instead of sleeping until the next scheduled cleaning time.
Precondition: this method must NOT be called within a synchronize block.
Cleanup all resources used by this AbstractServerCollection. All AbstractServers from the collection will be deleted. Each AbstractServer will be stopped, if necessary. The background thread which removes idle AbstractServers will be stopped.
After calling this method, this AbstractServerCollection object will become unusable.
Precondition: this method must NOT be called within a synchronize block.
Delete all AbstractServers from the collection. Each AbstractServer will be stopped, if necessary.
Precondition: this method must be called within a synchronize block.
Deletes from the collection the AbstractServer that‘s associated with the given key. If no such AbstractServer exists, nothing will happen.
If the AbstractServer is started, then it will be stopped before deletion.
Precondition: this method must be called within a synchronize block.
Iterate over all AbstractServer objects.
Precondition: this method must be called within a synchronize block.
Iterate over all keys and associated AbstractServer objects.
Precondition: this method must be called within a synchronize block.
Checks whether the collection is empty.
Precondition: this method must be called within a synchronize block.
Checks whether there‘s an AbstractServer object associated with the given key.
Precondition: this method must be called within a synchronize block.
Lookup and returns an AbstractServer with the given key.
If there is no AbstractSerer associated with the given key, then the given block will be called. That block must return an AbstractServer object. Then, that object will be stored in the collection, and returned.
The block must set the ‘max_idle_time’ attribute on the AbstractServer. AbstractServerCollection‘s idle cleaning interval will be adapted to accomodate with this. Changing the value outside this block is not guaranteed to have any effect on the idle cleaning interval. A max_idle_time value of nil or 0 means the AbstractServer will never be idle cleaned.
If the block raises an exception, then the collection will not be modified, and the exception will be propagated.
Precondition: this method must be called within a synchronize block.
Notify this AbstractServerCollection that server has performed an activity. This AbstractServerCollection will update the idle information associated with server accordingly.
lookup_or_add already automatically updates idle information, so you only need to call this method if the time at which the server has performed an activity is not close to the time at which lookup_or_add had been called.
Precondition: this method must be called within a synchronize block.
Acquire the lock for this AbstractServerCollection object, and run the code within the block. The entire block will be a single atomic operation.