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
The `put` and `get` functions allow interaction with the cable (note that these are not `@resumable` because they need to return the result of the operation and not the operation itself).
52
+
The `put!` and `get` functions allow interaction with the cable (note that these are not `@resumable` because they need to return the result of the operation and not the operation itself).
54
53
55
54
56
55
```julia
57
-
functionput(cable::Cable, value::String)
56
+
functionput!(cable::Cable, value::String)
58
57
@processlatency(cable.env, cable, value) # results in the scheduling of all events generated by latency
59
58
end
60
59
@@ -71,7 +70,7 @@ The `sender` and `receiver` generators yield events to the simulator.
0 commit comments