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
This commit was created on GitHub.com and signed with GitHub’s verified signature.
added SetEndpointType to KSqlDbContextOptionsBuilder for configuring to use either "/query" or "/query-stream" endpoint
CreateQuery and CreateQueryStream were merged. CreatePullQuery by default uses http/2 now. Subsequently CreateQueryStream was renamed to CreatePushQuery to align with the nomenclature of CreatePullQuery.
removed SetupQuery from KSqlDbContextOptionsBuilder, it was unified with SetupQueryStream. Subsequently SetupQueryStream was renamed to SetupPushQuery to align with the nomenclature of SetupPullQuery.
introduced distinct parameters specifically tailored for pull queries. This modification results in a breaking change. Before this update, the parameters sent to both the 'query' and 'query-stream' endpoints were shared between pull and push queries. #77