Sha256: 09dd15172a4ad19596332685bc5cc013b54e5b4a38097a5812c3a81b866d3ab9

Contents?: true

Size: 982 Bytes

Versions: 2

Compression:

Stored size: 982 Bytes

Contents

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

2 entries across 2 versions & 1 rubygems

Version Path
omf_common-6.0.0.pre.10 lib/omf_common/dsl/xmpp_mp.rb
omf_common-6.0.0.pre.8 lib/omf_common/dsl/xmpp_mp.rb