CARLA
 
载入中...
搜索中...
未找到
Stream.h
浏览该文件的文档.
1// Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma
2// de Barcelona (UAB).
3//
4// This work is licensed under the terms of the MIT license.
5// For a copy, see <https://opensource.org/licenses/MIT>.
6
7#pragma once
8
11
12namespace carla {
13namespace streaming {
14
15 /// A stream represents an unidirectional channel for sending data from server
16 /// to client. **Multiple** clients can subscribe to this stream using the
17 /// stream token. If no client is subscribed, the data flushed down the stream
18 /// is discarded.
20
21} // namespace streaming
22} // namespace carla
This file contains definitions of common data structures used in traffic manager.
Definition Carla.cpp:133