class Tantot::Config

Attributes

format[RW]
sidekiq_queue[RW]
strategy[RW]
sweep_on_push[RW]
use_after_commit_callbacks[RW]

Public Class Methods

new() click to toggle source
# File lib/tantot/config.rb, line 7
def initialize
  @strategy = :inline
  @format = :compact
  @use_after_commit_callbacks = true
  @sweep_on_push = false
  @sidekiq_queue = :default
end