public void Unregister <TEntity>(MockResourceEventQueue <TEntity> _)
     where TEntity : IKubernetesObject <V1ObjectMeta>
 {
     _queues.Remove(typeof(TEntity));
 }
 public void Register <TEntity>(MockResourceEventQueue <TEntity> watcher)
     where TEntity : IKubernetesObject <V1ObjectMeta>
 {
     _queues.Add(typeof(TEntity), watcher);
 }