TransactionalNodeService.TransactionToken.Refresh C# (CSharp) Method

Refresh() private method

private Refresh ( TransactionToken token ) : void
token TransactionToken
return void
        internal void Refresh(TransactionToken token)
        {
            MapObjectId = token.MapObjectId;

            if (token.DelayedExecutionMapObjectId != null)
            {
                DelayedExecutionMapObjectId = token.DelayedExecutionMapObjectId;
            }
        }
    }