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
* @param sessionStore The {@link org.whispersystems.libsignal.state.SessionStore} to store the constructed session in.
59
-
* @param preKeyStore The {@link org.whispersystems.libsignal.state.PreKeyStore} where the client's local {@link org.whispersystems.libsignal.state.PreKeyRecord}s are stored.
60
-
* @param identityKeyStore The {@link org.whispersystems.libsignal.state.IdentityKeyStore} containing the client's identity key information.
61
-
* @param remoteAddress The address of the remote user to build a session with.
62
-
*/
50
+
/// <summary>
51
+
/// Constructs a SessionBuilder.
52
+
/// </summary>
53
+
/// <param name="sessionStore">The <see cref="SessionStore"/> to store the constructed session in.</param>
54
+
/// <param name="preKeyStore">The <see cref="PreKeyStore"/> where the client's local <see cref="PreKeyRecord"/>s
55
+
/// are stored.</param>
56
+
/// <param name="signedPreKeyStore"></param>
57
+
/// <param name="identityKeyStore">The <see cref="IdentityKeyStore"/> containing the client's identity key
58
+
/// information.</param>
59
+
/// <param name="remoteAddress">The address of the remote user to build a session with.</param>
63
60
publicSessionBuilder(SessionStoresessionStore,
64
61
PreKeyStorepreKeyStore,
65
62
SignedPreKeyStoresignedPreKeyStore,
@@ -73,32 +70,29 @@ public SessionBuilder(SessionStore sessionStore,
73
70
this.remoteAddress=remoteAddress;
74
71
}
75
72
76
-
/**
77
-
* Constructs a SessionBuilder
78
-
* @param store The {@link SignalProtocolStore} to store all state information in.
79
-
* @param remoteAddress The address of the remote user to build a session with.
80
-
*/
73
+
/// <summary>
74
+
/// Constructs a SessionBuilder
75
+
/// </summary>
76
+
/// <param name="store">The <see cref="SignalProtocolStore"/> to store all state information in.</param>
77
+
/// <param name="remoteAddress">The address of the remote user to build a session with.</param>
0 commit comments