Entry Event

Fired once for each entry retrieved.

Syntax

public open class DefaultOdataEventListener : OdataEventListener {
  ...
  public override fun entry(e: OdataEntryEvent) {}
  ...
}

public class OdataEntryEvent {
  val id: String?
  val title: String?
  val summary: String?
  val eTag: String?
}

Remarks

The Entry event is fired once for each entry found in the response.

The entry properties are provided through EntryProperties.

The entry links are provided through EntryLinks.

Copyright (c) 2021 /n software inc. - All rights reserved.
IPWorks 2020 Kotlin Edition - Version 20.0 [Build 7941]