class Outbox
Public Class Methods
gtn(key)
click to toggle source
# File lib/ting_model/outbox.rb, line 10 def self.gtn(key) OutboxNode.seek(key).table_name end
shard(key)
click to toggle source
# File lib/ting_model/outbox.rb, line 6 def self.shard(key) Object.const_get(OutboxNode.seek(key).class_name) end
stn(key)
click to toggle source
# File lib/ting_model/outbox.rb, line 14 def self.stn(key) self.table_name = self.gtn(key) self end