Skip to content
New issue

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

fix: broken link PTL-0 #2026

Merged
merged 1 commit into from
Dec 3, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ Expr.dateIsGreaterEqual(TRADE_DATE,'20150518')
```

- `dateIsLessEqual(date as DateTime|String|Long, String)`

This returns `true` when the date in the given field is less or equal to the date specified.

For example:
Expand Down Expand Up @@ -245,9 +245,9 @@ The methods available for each of the field types can be found in their Javadoc
## Streaming data
The [Data Server](/develop/server-capabilities/real-time-queries-data-server/) is your source of streaming data. It provides a set of queries, each of which serves some or all fields from a specific table or view. These are your resources (along with the resources in the Request Server and the Event Handler). You need to know which queries are available to you, and more importantly, exactly what is available in each query.

When you request streaming data for an element, such as a [Grid Pro](/develop/client-capabilities/grids/grid-pro/#genesis-datasource), the platform sends a **DATA_LOGON** message that includes any attributes you have defined for the element (such as `max-rows` and `max-view`). These attributes enable you to limit the number of rows returned, for example.
When you request streaming data for an element, such as a [Grid Pro](/develop/client-capabilities/grids/grid-pro), the platform sends a **DATA_LOGON** message that includes any attributes you have defined for the element (such as `max-rows` and `max-view`). These attributes enable you to limit the number of rows returned, for example.

The platform creates the **DATA_LOGON** message automatically; you can view the details in our section on the [Data Server](/develop/server-capabilities/real-time-queries-data-server/#criteria_match).
You can apply filtering at the front end to control the data returned by the Data Server query. These filters are also automatically included in the **DATA_LOGON** message.

You can apply filtering at the front end to control the data returned by the Data Server query. These filters are also automatically included in the **DATA_LOGON** message.

Loading