aboutsummaryrefslogtreecommitdiffstats
path: root/core/plugin/core/core.rb
blob: 36ab3df8815af6cc0d16338b7534120ee65a0a62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# -*- coding: utf-8 -*-

Module.new do

  Plugin.create(:core) do

    # イベントフィルタを他のスレッドで並列実行する
    Delayer.new do
      Event.filter_another_thread = true end

  end

end