class Octokiq::Server::Configuration

Attributes

concurrency[RW]
queues[RW]
thread_mode[RW]

Public Class Methods

new() click to toggle source
# File lib/octokiq/server.rb, line 12
def initialize
  @concurrency = Etc.nprocessors
  @queues = [Consts::DEFAULT_QUEUE]
  @thread_mode = false
end