motion-firebase 3.3.0 → 4.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,34 +0,0 @@
1
- #import <Foundation/Foundation.h>
2
-
3
- /**
4
- * All Firebase references to the same database share a connection, persistent cache, etc. FirebaseApp
5
- * represents this shared state and can be accessed from any reference via its `app` property.
6
- * It has methods for managing your Firebase connection, etc.
7
- *
8
- * There is a one-to-one relationship between a FirebaseApp instance and a connection to Firebase.
9
- */
10
- @interface FirebaseApp : NSObject
11
-
12
- /**
13
- * The Firebase client automatically queues writes and sends them to the server at the earliest opportunity,
14
- * depending on network connectivity. In some cases (e.g. offline usage) there may be a large number of writes
15
- * waiting to be sent. Calling this method will purge all outstanding writes so they are abandoned.
16
- *
17
- * All writes will be purged, including transactions and {@link Firebase#onDisconnect} writes. The writes will
18
- * be rolled back locally, perhaps triggering events for affected event listeners, and the client will not
19
- * (re-)send them to the Firebase backend.
20
- */
21
- - (void)purgeOutstandingWrites;
22
-
23
-
24
- /**
25
- * Shuts down our connection to the Firebase backend until goOnline is called.
26
- */
27
- - (void)goOffline;
28
-
29
- /**
30
- * Resumes our connection to the Firebase backend after a previous goOffline call.
31
- */
32
- - (void)goOnline;
33
-
34
- @end
@@ -1,5 +0,0 @@
1
- @interface FirebaseServerValue : NSObject
2
-
3
- + (NSDictionary *) timestamp;
4
-
5
- @end
@@ -1,6 +0,0 @@
1
- framework module Firebase {
2
- umbrella header "Firebase.h"
3
-
4
- export *
5
- module * { export * }
6
- }
@@ -1,47 +0,0 @@
1
- Google LevelDB
2
- Copyright (c) 2011 The LevelDB Authors. All rights reserved.
3
-
4
- Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
5
-
6
- * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
7
-
8
- * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
9
-
10
- * Neither the name of Google Inc. nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
11
-
12
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
13
-
14
- --
15
-
16
- Square Socket Rocket
17
- Copyright 2012 Square Inc.
18
-
19
- Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
20
-
21
- http://www.apache.org/licenses/LICENSE-2.0
22
-
23
- Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
24
-
25
- --
26
-
27
- APLevelDB
28
- Created by Adam Preble on 1/23/12.
29
- Copyright (c) 2012 Adam Preble. All rights reserved.
30
-
31
- Permission is hereby granted, free of charge, to any person obtaining a copy
32
- of this software and associated documentation files (the "Software"), to deal
33
- in the Software without restriction, including without limitation the rights
34
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
35
- copies of the Software, and to permit persons to whom the Software is
36
- furnished to do so, subject to the following conditions:
37
-
38
- The above copyright notice and this permission notice shall be included in
39
- all copies or substantial portions of the Software.
40
-
41
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
42
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
43
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
44
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
45
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
46
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
47
- THE SOFTWARE.