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
% Retirieves responses collected for requests send in non blocking mode. If wairForEmptyQueue>0, the function waits for the last queued request to get a response.
17
+
% dialogue is a struct with the fields: request, response, timeRequestAdded, timeRequestSent, timeResponeRecieved
18
+
% At the moment this cannot get filtered by the url of the request yet.
19
+
%
20
+
% zeroMQrr('CloseAll')
21
+
% closes all open sockets and the queue thread if open.
22
+
%
23
+
%
24
+
% zeroMQrr('CloseThread')
25
+
% closes the queue thread if open
26
+
%
27
+
% url = zeroMQrr('StartConnectThread', url)
28
+
% This function is not neccessary and for backward compatability only. It simply returns the url of the input as previous versions required a handle instead of the url if the 'Send' command
29
+
%
30
+
% currently only tested on OSX. To compile you need the zeromq library
31
+
% installed (e.g. using brew on OSX) and the libraries set correctly in
32
+
% compile_matlab_wrapper
33
+
%
34
+
% Copyright (c) 2008 Shay Ohayon, California Institute of Technology.
35
+
% This file is a part of a free software. you can redistribute it and/or modify
36
+
% it under the terms of the GNU General Public License as published by
37
+
% the Free Software Foundation (see GPL.txt)
38
+
%
39
+
% Changes to allow receiving responses by Jonas Kn?ll, 2016
0 commit comments