Air.SimpleAirIdFactory.GetNextId C# (CSharp) Method

GetNextId() public method

Gets the next id.
public GetNextId ( ) : long
return long
        public long GetNextId()
        {
            return Interlocked.Increment(ref _id);
        }