From a9779b4fa568d11354fce82a92b6202a5a34643b Mon Sep 17 00:00:00 2001 From: "Bernadette F. Loscio" Date: Fri, 13 May 2016 08:26:21 -0300 Subject: [PATCH] Updating approach to implementation BP Real-time access --- bp.html | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/bp.html b/bp.html index 7729c37..6d9bab2 100644 --- a/bp.html +++ b/bp.html @@ -2972,7 +2972,12 @@

Intended Outcome

Possible Approach to Implementation

-

Real-time data accessibility may be achieved through two means:

+

A possible approach to implementation is for publishers to configure a Web Service that provides a connection so as real-time data is received by the web service it can be instantly made available to consumers by polling or streaming.

+ +

If data is checked infrequently by consumers, real-time data can be polled upon consumer request for the most recent data through an API. The data publishers will provide an API to facilitate these read-only requests.

+ +

If data is checked frequently by consumers, a streaming data implementation may be more appropriate where data is pushed through an API. While streaming techniques are beyond the scope of this best practice, there are many standard protocols and technologies available (for example Server-sent Events, WebSocket, EventSourceAPI) for clients receiving automatic updates from the server.

+