Class: AgentXmpp::Xmpp::IdGenerator

Inherits:
Object
  • Object
show all
Defined in:
lib/agent_xmpp/xmpp/stanza.rb

Overview


Class Method Summary collapse

Class Method Details

.generate_idObject

.….….….….….….….….….….….….….….….….….….….….….….….….……



18
19
20
21
22
# File 'lib/agent_xmpp/xmpp/stanza.rb', line 18

def generate_id
  @last_id += 1
  timefrac = Time.new.to_f.to_s.split(/\./, 2).last[-3..-1]
  "#{@last_id}#{timefrac}"
end