Exemplo n.º 1
0
 private void close(timeIdentity identity)
 {
     if (identity.TimeTick == fastCSharp.pub.StartTime.Ticks)
     {
         physicalSet.Default.Close(identity.GetIdentity(), false);
     }
 }
Exemplo n.º 2
0
 private void waitBuffer(timeIdentity identity)
 {
     if (identity.TimeTick == fastCSharp.pub.StartTime.Ticks)
     {
         physicalSet.Default.WaitBuffer(identity.GetIdentity());
     }
 }
Exemplo n.º 3
0
 private fastCSharp.code.cSharp.tcpBase.subByteArrayBuffer load(timeIdentity identity)
 {
     if (identity.TimeTick == fastCSharp.pub.StartTime.Ticks)
     {
         return(physicalSet.Default.Load(identity.GetIdentity()));
     }
     return(default(fastCSharp.code.cSharp.tcpBase.subByteArrayBuffer));
 }
 private void close(timeIdentity identity)
 {
     if (identity.TimeTick == CoreLibrary.PubPlus.StartTime.Ticks) physicalSet.Default.Close(identity.GetIdentity(), false);
 }
 private void waitBuffer(timeIdentity identity)
 {
     if (identity.TimeTick == CoreLibrary.PubPlus.StartTime.Ticks) physicalSet.Default.WaitBuffer(identity.GetIdentity());
 }
 private fastCSharp.code.cSharp.tcpBase.subByteArrayBuffer loadHeader(timeIdentity identity)
 {
     if (identity.TimeTick == CoreLibrary.PubPlus.StartTime.Ticks) return physicalSet.Default.LoadHeader(identity.GetIdentity());
     return default(fastCSharp.code.cSharp.tcpBase.subByteArrayBuffer);
 }
 private bool loaded(timeIdentity identity, bool isLoaded)
 {
     return identity.TimeTick == CoreLibrary.PubPlus.StartTime.Ticks && physicalSet.Default.Loaded(identity.GetIdentity(), isLoaded);
 }
 private bool flushFile(timeIdentity identity, bool isDiskFile)
 {
     return identity.TimeTick == CoreLibrary.PubPlus.StartTime.Ticks && physicalSet.Default.FlushFile(identity.GetIdentity(), isDiskFile);
 }
 private bool flush(timeIdentity identity)
 {
     return identity.TimeTick == CoreLibrary.PubPlus.StartTime.Ticks && physicalSet.Default.Flush(identity.GetIdentity());
 }
Exemplo n.º 10
0
 private bool flushFile(timeIdentity identity, bool isDiskFile)
 {
     return(identity.TimeTick == fastCSharp.pub.StartTime.Ticks && physicalSet.Default.FlushFile(identity.GetIdentity(), isDiskFile));
 }
Exemplo n.º 11
0
 private bool flush(timeIdentity identity)
 {
     return(identity.TimeTick == fastCSharp.pub.StartTime.Ticks && physicalSet.Default.Flush(identity.GetIdentity()));
 }
Exemplo n.º 12
0
        private unsafe int append(fastCSharp.code.cSharp.tcpBase.subByteUnmanagedStream dataStream)
        {
            timeIdentity identity = getIdentity(ref dataStream.Buffer);

            return(dataStream.Buffer.array != null?physicalSet.Default.Append(identity.GetIdentity(), ref dataStream.Buffer) : 0);
        }
Exemplo n.º 13
0
 private bool loaded(timeIdentity identity, bool isLoaded)
 {
     return(identity.TimeTick == fastCSharp.pub.StartTime.Ticks && physicalSet.Default.Loaded(identity.GetIdentity(), isLoaded));
 }
Exemplo n.º 14
0
        private bool create(fastCSharp.code.cSharp.tcpBase.subByteUnmanagedStream stream)
        {
            timeIdentity identity = getIdentity(ref stream.Buffer);

            return(stream.Buffer.array != null && physicalSet.Default.Create(identity.GetIdentity(), ref stream.Buffer));
        }