com.zipwhip.signals.app.Message Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zipwhip-api Show documentation
Show all versions of zipwhip-api Show documentation
Java client to support applications powered by the Zipwhip Cloud
The newest version!
package com.zipwhip.signals.app;
import com.zipwhip.signals.address.Address;
import java.io.Serializable;
/**
* Created by IntelliJ IDEA.
* User: Michael
* Date: Dec 11, 2010
* Time: 4:32:58 PM
*
* A basic class that is sent between actors. Every message must have a command and an address that dictates who the message is destined
* for.
*/
public interface Message extends Serializable {
/**
* Where is this message going to!
*
* @return
*/
public Address getAddress();
public void setAddress(Address address);
/**
* Where has this message been? Where is it from?
* @return
*/
public Headers getHeaders();
public void setHeaders(Headers headers);
/**
* The body of the message.
* @return
*/
public com.zipwhip.api.signals.commands.Command> getCommand();
public void setCommand(com.zipwhip.api.signals.commands.Command> command);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy