Methods
Public Instance methods
[ show source ]
# File framework/core.rb, line 18
18: def after_connection p_method
19: connection_callbacks[:after_connection] ||= []
20: connection_callbacks[:after_connection] << p_method
21: end
[ show source ]
# File framework/core.rb, line 23
23: def after_unbind p_method
24: connection_callbacks[:after_unbind] ||= []
25: connection_callbacks[:after_unbind] << p_method
26: end
[ show source ]
# File framework/core.rb, line 28
28: def before_unbind p_method
29: connection_callbacks[:before_unbind] ||= []
30: connection_callbacks[:before_unbind] << p_method
31: end