Skip to content

Commit eeecff2

Browse files
committed
LabVIEW gitignore and small doc update
1 parent 6744484 commit eeecff2

2 files changed

Lines changed: 20 additions & 0 deletions

File tree

.gitignore

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Libraries
2+
*.lvlibp
3+
*.llb
4+
5+
# Shared objects (inc. Windows DLLs)
6+
*.dll
7+
*.so
8+
*.so.*
9+
*.dylib
10+
11+
# Executables
12+
*.exe
13+
14+
# Metadata
15+
*.aliases
16+
*.lvlps
17+
.cache/

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ The "Async Methods Actor" is an actor-based library that implements an infrastru
1212

1313
If you want to get more control over the asynchronous call you can use the "Send Async Message.vi" method of the "Async Message.lvclass" class. To method you wire the message object you have created (possibly configured to match the input of your actor method by means of suitable property modes) and optionally an "Async Call Method" enum that can take values "Call and Collect" or "Call and forget". The message can be also configured by setting a previously created concrete subclass of the "Completion Notification Msg" and a caller enqueuer, if both settings are performed upon completion of the "Call and Collect" Async Message method the Async Method Actor will send the aforementioned concrete "Completion Notification Msg" message to the caller that will enable the caller to obtain a copy of the Async Message and the current number of running "Call and Collect" messages of this kind. The copy of the message will allow the caller to access the GUID and FQN of the conclude Async Message by means of the corresponding Async Message properties
1414

15+
## Example Code
16+
The library comes with an example that illustrates the full API. Within the source tree the examples can be found at the path `./Async Methods Actor Example`. When installing the VIPM package you will find the example at the path `(LabVIEW Root Path)/examples/LS Instruments AG/Async Methods Actor/Async Methods Actor Example`
17+
1518
# Methods and Classes documentation
1619

1720
## The "Async Methods Actor.lvclass" Actor Class

0 commit comments

Comments
 (0)