Sha256: 1718a2390be4fc43a26a21c64b6b1dec7e2dd304a2d90177963f307a61c56cd1

Contents?: true

Size: 999 Bytes

Versions: 4

Compression:

Stored size: 999 Bytes

Contents

require 'oml4r'

module OmfCommon
  module DSL
    module Xmpp
      class MPConnection < OML4R::MPBase
        name :xmpp_connections
        param :time, :type => :double
        param :jid, :type => :string
        param :operation, :type => :string
      end

      class MPPublished < OML4R::MPBase
        name :xmpp_published
        param :time, :type => :double
        param :jid, :type => :string
        param :topic, :type => :string
        param :xml_stanza, :type => :string
      end

      class MPReceived < OML4R::MPBase
        name :xmpp_received
        param :time, :type => :double
        param :jid, :type => :string
        param :topic, :type => :string
        param :xml_stanza, :type => :string
      end

      class MPSubscription < OML4R::MPBase
        name :xmpp_subscriptions
        param :time, :type => :double
        param :jid, :type => :string
        param :operation, :type => :string
        param :topic, :type => :string
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
omf_common-6.0.2.pre.2 lib/omf_common/comm/xmpp/xmpp_mp.rb
omf_common-6.0.2.pre.1 lib/omf_common/comm/xmpp/xmpp_mp.rb
omf_common-6.0.0 lib/omf_common/comm/xmpp/xmpp_mp.rb
omf_common-6.0.0.pre.11 lib/omf_common/comm/xmpp/xmpp_mp.rb