Class: Masks::ExpireActorsJob

Inherits:
ApplicationJob
  • Object
show all
Defined in:
app/jobs/masks/expire_actors_job.rb

Overview

Job for deleting actors that have passed their expiration time.

This job effectively delegates its work to the configured Masks::Adapter, specifically calling #expire_actors.

See Also:

Instance Method Summary collapse

Instance Method Details

#performObject



11
12
13
# File 'app/jobs/masks/expire_actors_job.rb', line 11

def perform
  Masks.configuration.expire_actors
end