mirror of
https://github.com/nim-lang/Nim.git
synced 2026-04-19 14:00:35 +00:00
added tactors2 test
This commit is contained in:
25
tests/threads/tactors2.nim
Normal file
25
tests/threads/tactors2.nim
Normal file
@@ -0,0 +1,25 @@
|
||||
discard """
|
||||
output: "1"
|
||||
"""
|
||||
|
||||
import actors
|
||||
|
||||
type
|
||||
some_type {.pure, final.} = object
|
||||
bla: int
|
||||
|
||||
proc thread_proc(input: some_type): some_type {.thread.} =
|
||||
result.bla = 1
|
||||
|
||||
proc main() =
|
||||
var actorPool: TActorPool[some_type, some_type]
|
||||
createActorPool(actorPool, 1)
|
||||
|
||||
var some_data: some_type
|
||||
|
||||
var inchannel = spawn(actorPool, some_data, thread_proc)
|
||||
var recv_data = ^inchannel
|
||||
close(inchannel[])
|
||||
echo recv_data.bla
|
||||
|
||||
main()
|
||||
Reference in New Issue
Block a user