Class SingleMessenger<M>
- java.lang.Object
 - 
- org.apache.tinkerpop.gremlin.process.computer.util.SingleMessenger<M>
 
 
- 
- 
Constructor Summary
Constructors Constructor Description SingleMessenger(Messenger<M> baseMessenger, M message) 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Iterator<M>receiveMessages()Receive all incoming messages to the currently executing vertex.voidsendMessage(MessageScope messageScope, M message)The currently executing vertex can send a message with providedMessageScope. 
 - 
 
- 
- 
Method Detail
- 
receiveMessages
public Iterator<M> receiveMessages()
Description copied from interface:MessengerReceive all incoming messages to the currently executing vertex.- Specified by:
 receiveMessagesin interfaceMessenger<M>- Returns:
 - the messages for the vertex
 
 
- 
sendMessage
public void sendMessage(MessageScope messageScope, M message)
Description copied from interface:MessengerThe currently executing vertex can send a message with providedMessageScope.- Specified by:
 sendMessagein interfaceMessenger<M>- Parameters:
 messageScope- the message scope of the message being sentmessage- the message to send
 
 - 
 
 -