You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/en/docs/workstation/wks-build-app.md
+12-7Lines changed: 12 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -68,13 +68,18 @@ To change a user's role or remove them from the workspace, click the three-dot i
68
68
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:
69
69
70
70
***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
+
78
83
79
84
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.
0 commit comments