Skip to content

Commit c106929

Browse files
updates
1 parent 13d653b commit c106929

2 files changed

Lines changed: 17 additions & 7 deletions

File tree

content/en/docs/releasenotes/workstation/_index.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,11 @@ These release notes cover changes made to the [Mendix Workstation](/mendix-works
1616

1717

1818

19+
### Deprecations
20+
21+
* We have removed support for named events using strings and string expressions instead of object attributes.
22+
23+
1924
## 3.5.0
2025

2126
### Release date: March 12, 2026

content/en/docs/workstation/wks-build-app.md

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -68,13 +68,18 @@ To change a user's role or remove them from the workspace, click the three-dot i
6868
Now that you are ready to start using Mendix Workstation, you can implement your own custom logic for interacting with devices. The following nanoflows and Java actions are essential for establishing connections, sending or receiving messages, and managing device interactions:
6969

7070
* **GetStation** - Retrieves the computer information connected to the Client.
71-
* **SendMessage** - Sends data or commands to the connected device. For more information about the supported message syntax, see [Message Syntax for File, Smart Card, and Bluetooth Devices](/mendix-workstation/device-syntax/).
72-
* **SubscribeToMessages** - Subscribes to device messages and triggers a nanoflow when messages are received.
73-
* **SubscribeToErrors** - Subscribes to device connection errors and triggers a nanoflow when errors occur.
74-
* **Unsubscribe** - End the subscription to device messages or errors.
75-
* **UnsubscribeByContext** - End all subscriptions related to a context object.
76-
* **UnsubscribeByDevice** - End all subscriptions related to a specific device.
77-
* **DisconnectDevice** - Unsubscribe and completely disconnect from a specific device.
71+
* **SendDeviceMessage** - Sends data or commands to the connected device. For more information about the supported message syntax, see [Message Syntax for File, Smart Card, and Bluetooth Devices](/mendix-workstation/device-syntax/).
72+
* **WaitForDeviceMessage** - Waits for a message from the connected device for the duration of the specified timeout period.
73+
* **WaitForObjectChange** - Waits for changes in the specified object for the duration of the specified timeout period.
74+
* **SubscribeToDeviceMessages** - Subscribes to device messages and triggers a nanoflow when messages are received.
75+
* **SubscribeToDeviceErrors** - Subscribes to device connection errors and triggers a nanoflow when errors occur.
76+
* **SubscribeToObjectChanges** - Subscribes to changes in the specified object.
77+
* **Unsubscribe** - Ends the subscription to device messages or errors.
78+
* **SetupDevice** - Creates and configures a device with the specified parameters.
79+
* **ConnectDevice** - Connects to a specific device.
80+
* **DisconnectDevice** - Unsubscribes and completely disconnects from a specific device.
81+
82+
7883

7984
These nanoflows and actions serve as the core building blocks for integrating devices into your Mendix applications and tailoring the functionality to your specific requirements.
8085

0 commit comments

Comments
 (0)