Class: TCellAgent::SensorEvents::AppCookie

Inherits:
TCellSensorEvent show all
Defined in:
lib/tcell_agent/sensor_events/server_agent.rb

Instance Attribute Summary

Attributes inherited from TCellSensorEvent

#ensure, #flush, #send

Instance Method Summary collapse

Methods inherited from TCellSensorEvent

#bucket_key, #calculate_offset

Constructor Details

#initialize(name, value, secure, http_only, session) ⇒ AppCookie

Returns a new instance of AppCookie.



119
120
121
122
123
124
125
126
127
128
# File 'lib/tcell_agent/sensor_events/server_agent.rb', line 119

def initialize(name, value, secure, http_only, session)
  super('appserver_framework_setting')
  @flush = false
  @ensure = true
  self['n'] = name
  self['v'] = value
  self['http_only'] = http_only
  self['secure'] = secure
  self['session'] = session
end