module Castle::Session
this module uses the Connection object and provides start method for persistent connection usage when there is a need of sending multiple requests at once
Constants
- HTTPS_SCHEME
Public Class Methods
call(&block)
click to toggle source
# File lib/castle/session.rb, line 11 def call(&block) return unless block Castle::Core::GetConnection.call.start(&block) end