TopicsForUser loads subscriptions for a given user. Reads public value. When the 'opts.IfModifiedSince' query is not nil the subscriptions with UpdatedAt > opts.IfModifiedSince are returned, where UpdatedAt can be either a subscription, a topic, or a user update timestamp. This is need in order to s
(uid t.Uid, keepDeleted bool, opts *t.QueryOpt)
| 109 | // 2. Client asks for N updated subscriptions since X. The server returns N with updates between X and Y. |
| 110 | // 3. Client goes to step 1 with X := Y. |
| 111 | TopicsForUser(uid t.Uid, keepDeleted bool, opts *t.QueryOpt) ([]t.Subscription, error) |
| 112 | // UsersForTopic loads users' subscriptions for a given topic. Public is loaded. |
| 113 | UsersForTopic(topic string, keepDeleted bool, opts *t.QueryOpt) ([]t.Subscription, error) |
| 114 | // OwnTopics loads a slice of topic names where the user is the owner. |
no outgoing calls