Class: Core::Endpoint::BasicHandler::Actions::Bound::Handler
- Inherits:
-
Core::Endpoint::BasicHandler
- Object
- Core::Endpoint::BasicHandler
- Core::Endpoint::BasicHandler::Actions::Bound::Handler
- Includes:
- InnerAction, Paged
- Defined in:
- app/api/core/endpoint/basic_handler/actions/bound/handler.rb
Overview
An instance of this class is responsible for dealing with a particular named action on a resource. It is as though this instance is actually part of the instance that it was registered within.
Instance Method Summary collapse
-
#initialize(owner, name, options) ⇒ Handler
constructor
A new instance of Handler.
Constructor Details
#initialize(owner, name, options) ⇒ Handler
Returns a new instance of Handler.
9 10 11 12 |
# File 'app/api/core/endpoint/basic_handler/actions/bound/handler.rb', line 9 def initialize(owner, name, , &) super(name, , &) @owner = owner end |