120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
|
/*!
* @brief Initializes an already allocated XMPPContactManager.
*
* @param connection The connection to be used to track contacts
* @param roster The roster used by the contact manager
* @return An initialized XMPPContactManager
*/
- initWithConnection: (XMPPConnection *)connection
roster: (XMPPRoster *)roster OF_DESIGNATED_INITIALIZER;
- (void)sendSubscribedToJID: (XMPPJID *)subscriber;
- (void)sendUnsubscribedToJID: (XMPPJID *)subscriber;
/*!
* @brief Adds the specified delegate.
*
|
|
|
>
|
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
|
/*!
* @brief Initializes an already allocated XMPPContactManager.
*
* @param connection The connection to be used to track contacts
* @param roster The roster used by the contact manager
* @return An initialized XMPPContactManager
*/
- (instancetype)initWithConnection: (XMPPConnection *)connection
roster: (XMPPRoster *)roster
OF_DESIGNATED_INITIALIZER;
- (void)sendSubscribedToJID: (XMPPJID *)subscriber;
- (void)sendUnsubscribedToJID: (XMPPJID *)subscriber;
/*!
* @brief Adds the specified delegate.
*
|