Class: Quark::MdkTracing::TracingDestination
- Inherits:
-
DatawireQuarkCore::QuarkObject
- Object
- DatawireQuarkCore::QuarkObject
- Quark::MdkTracing::TracingDestination
- Extended by:
- DatawireQuarkCore::Static
- Defined in:
- lib/mdk_tracing.rb
Overview
MDK can use this to handle logging on the Session.
Constant Summary
Constants included from DatawireQuarkCore::Static
DatawireQuarkCore::Static::Unassigned
Instance Method Summary collapse
- #__init_fields__ ⇒ Object
-
#initialize ⇒ TracingDestination
constructor
A new instance of TracingDestination.
-
#log(event) ⇒ Object
Send a log message to the server.
Methods included from DatawireQuarkCore::Static
_lazy_statics, static, unlazy_statics
Methods inherited from DatawireQuarkCore::QuarkObject
Constructor Details
#initialize ⇒ TracingDestination
Returns a new instance of TracingDestination.
28 29 30 31 32 |
# File 'lib/mdk_tracing.rb', line 28 def initialize() self.__init_fields__ nil end |
Instance Method Details
#__init_fields__ ⇒ Object
46 47 48 49 50 |
# File 'lib/mdk_tracing.rb', line 46 def __init_fields__() nil end |
#log(event) ⇒ Object
Send a log message to the server. Call using logToTracer().
40 41 42 43 44 |
# File 'lib/mdk_tracing.rb', line 40 def log(event) raise NotImplementedError, '`TracingDestination.log` is an abstract method' nil end |