BTDB.ODBLayer.TableInfo.CacheSingletonContent C# (CSharp) 메소드

CacheSingletonContent() 공개 메소드

public CacheSingletonContent ( long transactionNumber, byte content ) : void
transactionNumber long
content byte
리턴 void
        public void CacheSingletonContent(long transactionNumber, byte[] content)
        {
            lock (_cachedSingletonLock)
            {
                if (transactionNumber - _cachedSingletonTrNum < 0) return;
                _cachedSingletonTrNum = transactionNumber;
                _cachedSingletonContent = content;
            }
        }