コード例 #1
0
 /// <summary>
 /// Start a new advanced client session with FASTER.
 /// </summary>
 /// <param name="functions">Callback functions</param>
 /// <param name="sessionId">ID/name of session (auto-generated if not provided)</param>
 /// <param name="threadAffinitized">For advanced users. Specifies whether session holds the thread epoch across calls. Do not use with async code.
 ///     Ensure thread calls session Refresh periodically to move the system epoch forward.</param>
 /// <param name="sessionVariableLengthStructSettings">Session-specific variable-length struct settings</param>
 /// <returns>Session instance</returns>
 public AdvancedClientSession <Key, Value, Input, Output, Context, Functions> NewSession <Functions>(Functions functions, string sessionId = null, bool threadAffinitized = false,
                                                                                                     SessionVariableLengthStructSettings <Value, Input> sessionVariableLengthStructSettings = null)
     where Functions : IAdvancedFunctions <Key, Value, Input, Output, Context>
 {
     return(_fasterKV.NewAdvancedSession <Input, Output, Context, Functions>(functions, sessionId, threadAffinitized, sessionVariableLengthStructSettings));
 }