Class: AppProfiler::Server::ProfileServer::Transport
- Inherits:
-
Object
- Object
- AppProfiler::Server::ProfileServer::Transport
- Defined in:
- lib/app_profiler/server.rb
Instance Attribute Summary collapse
-
#socket ⇒ Object
readonly
Returns the value of attribute socket.
Instance Method Summary collapse
- #client ⇒ Object
-
#initialize ⇒ Transport
constructor
A new instance of Transport.
- #start ⇒ Object
- #stop ⇒ Object
Constructor Details
#initialize ⇒ Transport
Returns a new instance of Transport.
183 184 185 |
# File 'lib/app_profiler/server.rb', line 183 def initialize start end |
Instance Attribute Details
#socket ⇒ Object (readonly)
Returns the value of attribute socket.
181 182 183 |
# File 'lib/app_profiler/server.rb', line 181 def socket @socket end |
Instance Method Details
#client ⇒ Object
191 192 193 |
# File 'lib/app_profiler/server.rb', line 191 def client raise(NotImplementedError) end |
#start ⇒ Object
187 188 189 |
# File 'lib/app_profiler/server.rb', line 187 def start raise(NotImplementedError) end |
#stop ⇒ Object
195 196 197 |
# File 'lib/app_profiler/server.rb', line 195 def stop raise(NotImplementedError) end |