InternalUpdate() 개인적인 메소드

private InternalUpdate ( int id, int currentFrame ) : void
id int
currentFrame int
리턴 void
예제 #1
0
        /// <summary>
        /// Updates a specific item of the list.
        /// </summary>
        /// <param name="id">The unique ID of the item.</param>
        /// <param name="currentFrame">The current frame being processed.</param>
        /// <param name="status">Status description.</param>
        public static void Update(int id, int currentFrame, string status)
        {
            if (_encoder == null)
            {
                return;
            }

            _encoder.InternalUpdate(id, currentFrame, status);
        }
예제 #2
0
 /// <summary>
 /// Updates a specific item of the list.
 /// </summary>
 /// <param name="id">The unique ID of the item.</param>
 /// <param name="currentFrame">The current frame being processed.</param>
 /// <param name="status">Status description.</param>
 public static void Update(int id, int currentFrame, string status)
 {
     _encoder?.InternalUpdate(id, currentFrame, status);
 }