You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: dist/bundles/index.umd.js
+32-16Lines changed: 32 additions & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -474,25 +474,33 @@ function throwInvalidCallback(method) {
474
474
thrownewError("Invalid "+method+" arguments:\n your last param can't be a callback function, \n please remove it and use \".subscribe\" of the Observable!");
475
475
}
476
476
/**
477
-
* A class with static methods, which wraps Meteor's API and returns
478
-
* RxJS Observable as return value for all Meteor's API.
479
-
* The method's signature is the same as Metoer's, except you don't
480
-
* need to provide callbacks, and you need to "subscribe" instead.
481
-
* The functionality that wrapped in this implementation is Meteor.call,
482
-
* Meteor.autorun and Meteor.subscribe.
483
-
*
477
+
* This is a class with static methods that wrap Meteor's API and return RxJS
478
+
* Observables. The methods' signatures are the same as Meteor's, with the ]
479
+
* exception that the callbacks are handled by Meteor-rxjs. Instead of
480
+
* providing callbacks, you need to subscribe to the observables that are
481
+
* returned. The methods that are wrapped in MeteorObservable are
0 commit comments