We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sometime, call function does not return value.
(ql:quickload :jsonrpc) ;; server (defvar *server* (jsonrpc:make-server)) (sb-thread:make-thread (lambda () (jsonrpc:expose *server* "sum" (lambda (args) (reduce #'+ args))) (jsonrpc:server-listen *server* :port 50879 :mode :websocket))) ;; client (defvar *client* (jsonrpc:make-client)) (jsonrpc:client-connect *client* :url "ws://127.0.0.1:50879" :mode :websocket) (dotimes (n 10000) (unless (= 30 (jsonrpc:call *client* "sum" '(10 20))) (error "not 30")))
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Sometime, call function does not return value.
The text was updated successfully, but these errors were encountered: