override def equals()

in core/src/main/scala/org/apache/spark/eventhubs/EventPosition.scala [49:58]


  override def equals(obj: Any): Boolean = {
    obj match {
      case that: EventPosition =>
        this.offset == that.offset &&
          this.seqNo == that.seqNo &&
          this.enqueuedTime == that.enqueuedTime &&
          this.isInclusive == that.isInclusive
      case _ => false
    }
  }