Ejemplo n.º 1
0
 internal void Update(FirebasePath path, string value, FirebaseStatusCallback callback)
 {
     _cache.Update(path, value, callback);
 }
Ejemplo n.º 2
0
 public JsonCacheUpdateEventArgs(FirebasePath path)
 {
     Path = path;
 }
Ejemplo n.º 3
0
 internal Firebase Child(FirebasePath path)
 {
     return(new Firebase(this, path));
 }
Ejemplo n.º 4
0
 internal void Set(FirebasePath path, object value, FirebaseStatusCallback callback)
 {
     _cache.Set(path, value, callback);
 }
Ejemplo n.º 5
0
 internal void SetWithPriority(FirebasePath path, string value, FirebasePriority priority,
                               FirebaseStatusCallback callback)
 {
     _cache.SetWithPriority(path, value, priority, callback);
 }
Ejemplo n.º 6
0
 internal void SetPriority(FirebasePath path, FirebasePriority priority, FirebaseStatusCallback callback)
 {
     _cache.SetPriority(path, priority, callback);
 }
Ejemplo n.º 7
0
 internal Guid SubscribeOnce(string eventName, FirebasePath path, SnapshotCallback callback, object context,
                             IEnumerable <ISubscriptionFilter> filters, FirebaseStatusCallback cancelledCallback)
 {
     return(_subscriptions.Subscribe(path, eventName, callback, context, true, filters));
 }
Ejemplo n.º 8
0
 internal Guid Subscribe(string eventName, FirebasePath path, SnapshotCallback callback, object context,
                         IEnumerable <ISubscriptionFilter> filters)
 {
     return(_subscriptions.Subscribe(path, eventName, callback, context, false, filters));
 }
Ejemplo n.º 9
0
 internal string Push(FirebasePath path, object value, FirebaseStatusCallback callback)
 {
     return(_cache.Push(path, value, callback));
 }