lib/omf_oml/endpoint.rb in omf_oml-0.9.7 vs lib/omf_oml/endpoint.rb in omf_oml-0.9.8

- old
+ new

@@ -1,18 +1,18 @@ -require 'omf_common/lobject' +require 'omf_base/lobject' require 'omf_oml' require 'omf_oml/oml_tuple' module OMF::OML # This class parses an OML network stream and creates various OML mstreams which can # be visualized. After creating the object, the @run@ method needs to be called to # start processing the stream. # - class OmlEndpoint < OMF::Common::LObject + class OmlEndpoint < OMF::Base::LObject # Register a proc to be called when a new stream was # discovered on this endpoint. # def on_new_stream(key = :_, &proc) @@ -75,10 +75,10 @@ # An instance of this class is created by +OmlEndpoint+ to deal with # and individual client connection (socket). An EndPoint is creating # and instance and then immediately calls the +run+ methods. # # - class OmlSession < OMF::Common::LObject # :nodoc + class OmlSession < OMF::Base::LObject # :nodoc # Return the value for the respective @key@ in the protocol header. # def [](key) @header[key]