From e6181c24124d97f2fbc932b8a68311e625463156 Mon Sep 17 00:00:00 2001 From: uzvkl Date: Tue, 11 Jun 2019 23:05:52 +0200 Subject: Move dsa related stuff to subfolder --- FireBase/Query/IFirebaseQuery.cs | 40 ---------------------------------------- 1 file changed, 40 deletions(-) delete mode 100644 FireBase/Query/IFirebaseQuery.cs (limited to 'FireBase/Query/IFirebaseQuery.cs') diff --git a/FireBase/Query/IFirebaseQuery.cs b/FireBase/Query/IFirebaseQuery.cs deleted file mode 100644 index 0da4b15..0000000 --- a/FireBase/Query/IFirebaseQuery.cs +++ /dev/null @@ -1,40 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Threading.Tasks; -using Firebase.Database.Streaming; - -namespace Firebase.Database.Query -{ - /// - /// The FirebaseQuery interface. - /// - public interface IFirebaseQuery - { - /// - /// Gets the owning client of this query. - /// - FirebaseClient Client { get; } - - /// - /// Retrieves items which exist on the location specified by this query instance. - /// - /// Optional timeout value. - /// Type of the items. - /// Collection of . - Task>> OnceAsync(TimeSpan? timeout = null); - - /// - /// Returns current location as an observable which allows to real-time listening to events from the firebase server. - /// - /// Type of the items. - /// Cold observable of . - IObservable> AsObservable( - EventHandler> exceptionHandler, string elementRoot = ""); - - /// - /// Builds the actual url of this query. - /// - /// The . - Task BuildUrlAsync(); - } -} \ No newline at end of file -- cgit v1.2.3-54-g00ecf