Virtual Wave Driver v1.0

StreamMode

Property StreamMode As STREAM_MODE
Read/Write: Read and Write

Description

Sets/returns the stream working mode.

Remarks

The StreamMode can be MultiThreaded (default) or SingleThreaded.

  • MultiThreaded , the stream data is transmited in the working thread, it means that the OnStreamData event will be fired in the working thread. This mode is effective but it may not work under some single thread development tools such as Visual Basic 6.0.
  • SingleThreaded, the stream data will be synchronized in the main thread. It is less effective but worked for single thread development tools such as Visual Basic 6.0.
  • See Also

    OnStreamData