class TCellAgent::SensorEvents::AppRoutesSensorEvent
Public Class Methods
new(uri, method, route_id, params = nil, destination = nil)
click to toggle source
Calls superclass method
TCellAgent::SensorEvents::TCellSensorEvent::new
# File lib/tcell_agent/sensor_events/server_agent.rb, line 35 def initialize(uri, method, route_id, params = nil, destination = nil) super('appserver_routes') @flush = false @ensure = true method = method.downcase self['uri'] = uri self['method'] = method self['rid'] = route_id self['params'] = params if params self['destination'] = destination if destination end