mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-16 00:05:53 +01:00
6ddef75804
-Cleanup
67 lines
1.8 KiB
ObjectPascal
67 lines
1.8 KiB
ObjectPascal
program topic_messaging_consumer;
|
|
|
|
{$APPTYPE CONSOLE}
|
|
{$R *.res}
|
|
|
|
uses
|
|
System.SysUtils, MVCFramework.RESTClient, System.JSON,
|
|
Winapi.Windows, MVCFramework.Commons;
|
|
|
|
procedure Main;
|
|
var
|
|
LCli: TRESTClient;
|
|
LRes: IRESTResponse;
|
|
LMsg: string;
|
|
LMyClientID: string;
|
|
begin
|
|
{
|
|
USAGE PATTERN
|
|
POST /messages/clients/<myuniqueid>
|
|
POST /messages/subscriptions/topic/<topicname1>
|
|
POST /messages/subscriptions/topic/<topicname2>
|
|
...
|
|
POST /messages/subscriptions/topic/<topicnameN>
|
|
GET /messages (this line can return 200 OK or 408 REQUEST TIMEOUT, however there is always a message body)
|
|
|
|
to unsubscribe
|
|
DELETE /messages/subscriptions/topic/<topicname1>
|
|
DELETE /messages/subscriptions/topic/<topicname2>
|
|
...
|
|
DELETE /messages/subscriptions/topic/<topicnameN>
|
|
}
|
|
|
|
LMyClientID := 'my-unique-client-id' + GetTickCount.ToString;
|
|
LCli := TRESTClient.Create('localhost', 9999);
|
|
try
|
|
LCli.ReadTimeout(-1);
|
|
LRes := LCli.doPOST('/messages', ['clients', LMyClientID]);
|
|
if LRes.ResponseCode <> HTTP_STATUS.OK then
|
|
WriteLn('Cannot set client id. ' + LRes.ResponseText);
|
|
LRes := LCli.doPOST('/messages/subscriptions/topic', ['topic1']);
|
|
if LRes.ResponseCode <> HTTP_STATUS.OK then
|
|
WriteLn('Cannot subscribe. ' + LRes.ResponseText);
|
|
while True do
|
|
begin
|
|
WriteLn('Waiting on GET /messages');
|
|
LRes := LCli.doGET('/messages', []);
|
|
if LRes.ResponseCode = HTTP_STATUS.RequestTimeout then
|
|
WriteLn('TIMEOUT: ' + LRes.BodyAsString)
|
|
else
|
|
WriteLn(LRes.BodyAsString);
|
|
end;
|
|
finally
|
|
LCli.Free;
|
|
end;
|
|
end;
|
|
|
|
begin
|
|
try
|
|
Main;
|
|
except
|
|
on E: Exception do
|
|
WriteLn(E.ClassName, ': ', E.Message);
|
|
end;
|
|
readln;
|
|
|
|
end.
|