hadoop_common/ipc/alignment_context.rs
1/// This interface intends to align the state between client and server
2/// via RPC communication.
3///
4/// This should be implemented separately on the client side and server side
5/// and can be used to pass state information on RPC responses from server
6/// to client.
7pub trait AlignmentContext {
8 // TODO
9}