xmpp/id.go
author Chris Jones <chris@cjones.org>
Wed, 16 Oct 2013 20:41:14 -0600
changeset 169 f59b79d032da
parent 126 367e76b3028e
permissions -rw-r--r--
Make an attempt to only close the send channel if it's still open.

package xmpp

// Code to generate unique IDs for outgoing messages.

import (
	"fmt"
)

var id <-chan string

func init() {
	// Start the unique id generator.
	idCh := make(chan string)
	id = idCh
	go func(ch chan<- string) {
		id := int64(1)
		for {
			str := fmt.Sprintf("id_%d", id)
			ch <- str
			id++
		}
	}(idCh)
}

// This function may be used as a convenient way to generate a unique
// id for an outgoing iq, message, or presence stanza.
func NextId() string {
	return <-id
}