Uses of Class
service.MessageType

Packages that use MessageType
service   
service.id   
 

Uses of MessageType in service
 

Fields in service declared as MessageType
protected  MessageType Service.myType
          The type of the service
protected  MessageType TypedMessage.type
          Type of the service
 

Fields in service with type parameters of type MessageType
protected  java.util.HashMap<MessageType,SynchronizedBuffer> MessageDispatcher.serviceMap
          This hash map associates a buffer to each type of message
 

Methods in service that return MessageType
 MessageType TypedMessage.getType()
           
static MessageType MessageType.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static MessageType[] MessageType.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in service with parameters of type MessageType
 SynchronizedBuffer<Message> MessageDispatcher.associateService(MessageType type)
          For a given message type, create and associate a dedicated buffer
 void Service.initialize(MessageDispatcher dispatcher, ICommunication commElt, MessageType myType)
          Initialize the service: register the service on the message dispatcher
 void TypedMessage.setType(MessageType type)
           
 

Constructors in service with parameters of type MessageType
TypedMessage(ProcessIdentifier processId, java.lang.Object data, MessageType type)
          Create a typed message
 

Uses of MessageType in service.id
 

Methods in service.id with parameters of type MessageType
 void IdentificationService.initialize(MessageDispatcher dispatcher, ICommunication commElt, MessageType myType)