RulePoint
- RulePoint 6.1.2
- All Products
WHEN 2 stock WITH symbol = "XYZ" THEN EmailBrokerResponse WITH to="broker@company.com"
WHEN
| WITH
| THEN
|
---|---|---|
milk
| is low
| go to grocery store
|
WHEN
| WITH
| THEN
|
---|---|---|
2% milk
| is more than 1/2 empty
| go to grocery store tonight
|
2% milk
| is low and past sell-by date
| go to grocery store now
|
WHEN
| WITH
| THEN
|
---|---|---|
2% milk
| is more than 1/2 empty
| go to grocery store tomorrow
|
eggs
| less than a dozen
| go to grocery store tomorrow
|
WHEN stock s WITH s.symbol="XYZ" AND s.price > 10 THEN EmailResponse
WHEN
| WITH
| THEN
|
---|---|---|
WHEN stock s
| WITH s.symbol="XYZ" AND s.price > 10
| THEN EmailResponse
|
When a Stock topic event, s, occurs at any time...
| When Stock topic event s has a symbol of XYZ and a price greater than $10...
| When Stock topic event s has a symbol of XYZ and a price greater than $10, send my defined Email response.
|