Class: SolidMCP::CleanupJob

Inherits:
ActiveJob::Base
  • Object
show all
Defined in:
lib/solid_mcp/cleanup_job.rb

Instance Method Summary collapse

Instance Method Details

#performObject



5
6
7
8
9
10
# File 'lib/solid_mcp/cleanup_job.rb', line 5

def perform
  SolidMCP::Message.cleanup(
    delivered_retention: SolidMCP.configuration.delivered_retention_seconds,
    undelivered_retention: SolidMCP.configuration.undelivered_retention_seconds
  )
end