diff options
author | Ondrej Fabry <ofabry@cisco.com> | 2017-11-28 19:53:14 +0100 |
---|---|---|
committer | Ondrej Fabry <ofabry@cisco.com> | 2017-11-28 19:53:14 +0100 |
commit | 67482a4f8c3a3a7cf17b4edf82e61c28b318ffd9 (patch) | |
tree | f08519f399f345439bd3b3cfd4f61c1c63e34889 /adapter/adapter.go | |
parent | 3f1edad4e6ba0a7876750aea55507fae14d8badf (diff) |
Add WaitReady to VppAdapter
- this fixes issue with mocked adapter during AsyncConnect
Change-Id: I952025fec865422f9e83cec9383d96f79a639c90
Signed-off-by: Ondrej Fabry <ofabry@cisco.com>
Diffstat (limited to 'adapter/adapter.go')
-rw-r--r-- | adapter/adapter.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/adapter/adapter.go b/adapter/adapter.go index 2843d2c..d8f29c9 100644 --- a/adapter/adapter.go +++ b/adapter/adapter.go @@ -30,4 +30,7 @@ type VppAdapter interface { // SetMsgCallback sets a callback function that will be called by the adapter whenever a message comes from VPP. SetMsgCallback(func(context uint32, msgId uint16, data []byte)) + + // WaitReady returns func which waits until adapter is ready. + WaitReady() func() error } |