ArtemisComm.Proxy.UI.SQLLogger.PacketToLogging.Process C# (CSharp) Method

Process() public method

public Process ( Packet packet, System.Guid sourceID, System.Guid targetID, int subPacketType ) : object
packet ArtemisComm.Packet
sourceID System.Guid
targetID System.Guid
subPacketType int
return object
        public object Process(Packet packet, Guid sourceID, Guid targetID, int subPacketType)
        {
            int seqID = 0;
            lock (lockingObject)
            {
                if (ActiveConnection == null)
                {
                    ActiveConnection = GetConnection();
                }
                seqID = InsertIntoPacketTable(packet, sourceID, targetID, subPacketType);
               
            }
            return seqID;
        }
        object lockingObject2 = new object();