All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hubspot.chrome.devtools.client.core.target.TargetDestroyedEvent Maven / Gradle / Ivy

package com.hubspot.chrome.devtools.client.core.target;

import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.hubspot.chrome.devtools.client.core.Event;

/**
 * Issued when a target is destroyed.
 */
public final class TargetDestroyedEvent extends Event {
  private TargetID targetId;

  @JsonCreator
  public TargetDestroyedEvent(@JsonProperty("targetId") TargetID targetId) {
    this.targetId = targetId;
  }

  public TargetID getTargetId() {
    return targetId;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy