/**
  * Add {@link ServiceCommand} instance to the request log.
  *
  * @param command
  *            {@code ServiceCommand<?>}
  */
 public void AddExecutedCommand(IServiceCommandInfo command)
 {
     if (allExecutedCommands.Value.Count >= MAX_STORAGE)
     {
         return;
     }
     allExecutedCommands.Value.Enqueue(command);
 }
 /**
  * Add {@link ServiceCommand} instance to the request log.
  * 
  * @param command
  *            {@code ServiceCommand<?>}
  */
 public void AddExecutedCommand(IServiceCommandInfo command)
 {
     if (allExecutedCommands.Value.Count >= MAX_STORAGE)
     {
         return;
     }
     allExecutedCommands.Value.Enqueue(command);
 }