OpenSim.Region.CoreModules.Agent.AssetTransaction.AssetTransactionModule.RemoveAgentAssetTransactions C# (CSharp) Method

RemoveAgentAssetTransactions() public method

Remove the given agent asset transactions. This should be called when a client is departing from a scene (and hence won't be making any more transactions here).
public RemoveAgentAssetTransactions ( UUID userID ) : void
userID UUID
return void
        public void RemoveAgentAssetTransactions(UUID userID)
        {
            // m_log.DebugFormat("Removing agent asset transactions structure for agent {0}", userID);

            lock (AgentTransactions)
            {
                AgentTransactions.Remove(userID);
            }
        }