pub struct Message<T> { /* private fields */ }
Expand description
A wrapped message which may be either typed or binary data.
Implementations§
Source§impl<T> Message<T>
impl<T> Message<T>
Sourcepub fn from_typed(typed: T) -> Self
pub fn from_typed(typed: T) -> Self
Wrap a typed item as a message.
Examples found in repository?
examples/comm_hello.rs (line 19)
6fn main() {
7
8 // extract the configuration from user-supplied arguments, initialize the computation.
9 let config = timely_communication::Config::from_args(std::env::args()).unwrap();
10 let guards = timely_communication::initialize(config, |mut allocator| {
11
12 println!("worker {} of {} started", allocator.index(), allocator.peers());
13
14 // allocates a pair of senders list and one receiver.
15 let (mut senders, mut receiver) = allocator.allocate(0);
16
17 // send typed data along each channel
18 for i in 0 .. allocator.peers() {
19 senders[i].send(Message::from_typed(format!("hello, {}", i)));
20 senders[i].done();
21 }
22
23 // no support for termination notification,
24 // we have to count down ourselves.
25 let mut received = 0;
26 while received < allocator.peers() {
27
28 allocator.receive();
29
30 if let Some(message) = receiver.recv() {
31 println!("worker {}: received: <{}>", allocator.index(), message.deref());
32 received += 1;
33 }
34
35 allocator.release();
36 }
37
38 allocator.index()
39 });
40
41 // computation runs until guards are joined or dropped.
42 if let Ok(guards) = guards {
43 for guard in guards.join() {
44 println!("result: {:?}", guard);
45 }
46 }
47 else { println!("error in computation"); }
48}
Sourcepub fn as_ref_or_mut(&mut self) -> RefOrMut<'_, T>
pub fn as_ref_or_mut(&mut self) -> RefOrMut<'_, T>
Returns an immutable or mutable typed reference.
This method returns a mutable reference if the underlying data are typed Rust instances, which admit mutation, and it returns an immutable reference if the data are serialized binary data.
Source§impl<T: Data> Message<T>
impl<T: Data> Message<T>
Sourcepub unsafe fn from_bytes(bytes: Bytes) -> Self
pub unsafe fn from_bytes(bytes: Bytes) -> Self
Wrap bytes as a message.
§Safety
This method is unsafe, in that Abomonated::new()
is unsafe: it presumes that
the binary data can be safely decoded, which is unsafe for e.g. UTF8 data and
enumerations (perhaps among many other types).
Sourcepub fn length_in_bytes(&self) -> usize
pub fn length_in_bytes(&self) -> usize
The number of bytes required to serialize the data.
Sourcepub fn into_bytes<W: Write>(&self, writer: &mut W)
pub fn into_bytes<W: Write>(&self, writer: &mut W)
Writes the binary representation into writer
.
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for Message<T>where
T: Freeze,
impl<T> !RefUnwindSafe for Message<T>
impl<T> Send for Message<T>
impl<T> !Sync for Message<T>
impl<T> Unpin for Message<T>where
T: Unpin,
impl<T> !UnwindSafe for Message<T>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more