Apache.NMS.ActiveMQ.Util.IdGenerator.GenerateId C# (CSharp) Method

GenerateId() public method

Generate a Unique Id
public GenerateId ( ) : String
return String
        public String GenerateId()
        {
            lock(UNIQUE_STUB)
            {
                return this.seed + (this.sequence++);
            }
        }