From d66bf55670ae4f4e2ea865bfc28ecd9491f1881a Mon Sep 17 00:00:00 2001 From: kosyloa Date: Mon, 15 Apr 2024 18:02:09 +0200 Subject: [PATCH] fix documentation --- DXFeedFramework/Api/DXFeed.swift | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/DXFeedFramework/Api/DXFeed.swift b/DXFeedFramework/Api/DXFeed.swift index a085fcf01..fcd0998af 100644 --- a/DXFeedFramework/Api/DXFeed.swift +++ b/DXFeedFramework/Api/DXFeed.swift @@ -99,6 +99,11 @@ public extension DXFeed { /// It just retrieves last received event from the local cache of this feed. /// The events are stored in the cache only if there is some /// attached ``DXFeedSubscription`` that is subscribed to the corresponding event type and symbol. + /// - Parameters: + /// - type: The event type ``IEventType``. + /// - symbol: The ``Symbol``. + /// - Returns: The list of ``ILastingEvent`` + /// - Throws: ``GraalException``. Rethrows exception from Java. func getLastEventIfSubscribed(type: IEventType.Type, symbol: Symbol) throws -> ILastingEvent? { return try native.getLastEventIfSubscribed(type: type, symbol: symbol) }