Uses of Class
org.kth.dks.dks_marshal.DKSMessage

Packages that use DKSMessage
org.kth.dks   
org.kth.dks.dks_dht   
org.kth.dks.dks_marshal   
org.kth.dks.dks_node   
org.kth.dks.planetlab   
org.kth.dks.planetlab.messages   
 

Uses of DKSMessage in org.kth.dks
 

Methods in org.kth.dks with parameters of type DKSMessage
 boolean DKSImpl.addMsgHandler(DKSMessage msg, java.lang.Object handlerObject, java.lang.String methodName)
           
 boolean DKSInterface.addMsgHandler(DKSMessage msg, java.lang.Object handlerObject, java.lang.String methodName)
          Registers a handler for a DKSMessage.
 void DKSImpl.send(DKSRef target, DKSMessage message)
          Send the message to the specified recipient node.
 boolean DKSMessagingInterface.send(DKSRef dest, DKSMessage msg)
          Send a message directly to a node.
 void DKSInterface.send(DKSRef target, DKSMessage message)
          Sends a DKSMessage to a DKS node
 

Uses of DKSMessage in org.kth.dks.dks_dht
 

Subclasses of DKSMessage in org.kth.dks.dks_dht
 class AddItemMsg
           
 class AddToBindingMsg
           
 class ChangeItemMsg
           
 class CreateMCastGroupMsg
           
 class CreateMCastGroupReplyMsg
           
 class DHTRestoreItemsMsg
           
 class DHTRestoreReplicasMsg
           
 class DHTResultMsg
           
 class DHTStateTransferMsg
           
 class GetItemsMsg
           
 class JoinMCastGroupMsg
           
 class LookupBindingMsg
           
 class MCastGroupInfoMsg
           
 class MCastGroupInfoReplyMsg
           
 class RemoveFromBindingMsg
           
 class RemoveItemMsg
           
 class ReplicateMsg
           
 class ReplicationFinishedMsg
           
 class RetreiveItemsMsg
           
 class RetrieveItemsMsg
           
 

Methods in org.kth.dks.dks_dht that return DKSMessage
 DKSMessage DKSMCastDHTImpl.dhtRouteCallback(long identifier, DKSMessage value)
          The callback is called at the responsible node when a route() message reaches its destination and the message is not handled at a lower abstraction layer.
 DKSMessage DKSDHTCallback.dhtRouteCallback(long identifier, DKSMessage value)
          The callback is called at the responsible node when a route() message reaches its destination and the message is not handled at a lower abstraction layer.
 

Methods in org.kth.dks.dks_dht with parameters of type DKSMessage
 boolean DKSDHTImpl.addMsgHandler(DKSMessage msg, java.lang.Object handlerObject, java.lang.String methodName)
           
 boolean DKSMCastDHTImpl.addMsgHandler(DKSMessage msg, java.lang.Object handlerObject, java.lang.String methodName)
           
 DKSMessage DKSMCastDHTImpl.dhtRouteCallback(long identifier, DKSMessage value)
          The callback is called at the responsible node when a route() message reaches its destination and the message is not handled at a lower abstraction layer.
 DKSMessage DKSDHTCallback.dhtRouteCallback(long identifier, DKSMessage value)
          The callback is called at the responsible node when a route() message reaches its destination and the message is not handled at a lower abstraction layer.
 void DKSMCastDHTImpl.dhtRouteCallbackAsync(long identifier, DKSMessage payload)
          The callback is called at the responsible node when a route() message reaches its destination and the message is not handled at a lower abstraction layer.
 void DKSDHTCallback.dhtRouteCallbackAsync(long identifier, DKSMessage payload)
          The callback is called at the responsible node when a route() message reaches its destination and the message is not handled at a lower abstraction layer.
static DKSObject DKSDHTImpl.message2obj(DKSMessage m)
           
 void DKSDHTImpl.send(DKSRef target, DKSMessage message)
           
 void DKSMCastDHTImpl.send(DKSRef target, DKSMessage message)
           
 

Uses of DKSMessage in org.kth.dks.dks_marshal
 

Subclasses of DKSMessage in org.kth.dks.dks_marshal
 class AckByeMsg
           
 class AckHelloMsg
           
 class AckJoinInitMsg
           
 class AdaptLeaveMsg
           
 class AdaptMsg
           
 class BadPointerMsg
           
 class BecomeNormalMsg
           
 class BootstrapMsg
           
 class BroadCastMsg
           
 class ByeMsg
           
 class CorrectionOnJoinMsg
           
 class CorrectionOnLeaveMsg
           
 class FailureMsg
           
 class HeartbeatMsg
           
 class HelloMsg
           
 class InsertNodeMsg
           
 class JoinInitMsg
           
 class LeaveAcceptMsg
           
 class LeaveRejectMsg
           
 class LeaveRequestMsg
           
 class LookupFailureMsg
           
 class LookupMsg
           
 class LookupRequestMsg
           
 class LookupResponseMsg
           
 class LookupResultMsg
           
 class NodeLeftMsg
           
 class RestartJoinMsg
           
 class RestartOperationMsg
           
 

Fields in org.kth.dks.dks_marshal declared as DKSMessage
protected  DKSMessage MarshalInterface.msg
           
 

Methods in org.kth.dks.dks_marshal that return DKSMessage
 DKSMessage MsgSrcDestWrapper.getMsg()
           
 DKSMessage FailureMsg.getMsg()
           
 DKSMessage RestartOperationMsg.getOperation()
           
static DKSMessage MarshalXML.unflatten(byte[] raw)
           
static DKSMessage MarshalBinary.unflatten(byte[] raw)
           
static DKSMessage DKSMessage.unmarshal(byte[] raw)
           
static DKSMessage DKSMessage.unmarshal(byte transType, byte[] raw)
           
static DKSMessage MarshalXML.xmlToDKSMessage(XMLMessage xmlMsg)
           
 

Methods in org.kth.dks.dks_marshal with parameters of type DKSMessage
 boolean ObjectAdapter.callMessageHandler(DKSMessage dksMsg, DKSRef source)
          Takes a narrowed DKSMessage and dispatches it to a handler
 boolean DKSMarshal.dispatchOA(DKSMessage dksMsg, DKSRef source, DKSOverlayAddress dest)
          Takes an unmarshalled message from source to dest and dispatches it to the correct ObjectAdapter
 boolean ObjectAdapter.putMessagePair(DKSMessage m, DKSRef s)
          Synchronized method to put a message together with its sender in the queue
 boolean DKSMarshal.send(DKSRef src, DKSRef dest, DKSMessage msg)
          Sends the message inside msg from src to dest.
 void MarshalXML.unflatten(DKSMessage msg, XMLMessage xml)
           
 

Constructors in org.kth.dks.dks_marshal with parameters of type DKSMessage
FailureMsg(DKSRef s, DKSRef d, DKSMessage m)
           
MarshalBinary(DKSMessage m)
           
MarshalInterface(DKSMessage m)
           
MarshalXML(DKSMessage m)
           
MsgSrcDestWrapper(DKSMessage m, DKSRef s, DKSRef d)
           
RestartOperationMsg(DKSMessage msg)
           
 

Uses of DKSMessage in org.kth.dks.dks_node
 

Methods in org.kth.dks.dks_node with parameters of type DKSMessage
 boolean DKSNode.addMsgHandler(DKSMessage msg, java.lang.Object handlerObject, java.lang.String methodName)
           
 boolean DKSNode.send(DKSRef dest, DKSMessage msg)
           
 

Uses of DKSMessage in org.kth.dks.planetlab
 

Methods in org.kth.dks.planetlab that return DKSMessage
 DKSMessage StrechMeter.dhtRouteCallback(long identifier, DKSMessage msg)
           
 DKSMessage PlanetLabDKS.dhtRouteCallback(long identifier, DKSMessage msg)
           
 

Methods in org.kth.dks.planetlab with parameters of type DKSMessage
 DKSMessage StrechMeter.dhtRouteCallback(long identifier, DKSMessage msg)
           
 DKSMessage PlanetLabDKS.dhtRouteCallback(long identifier, DKSMessage msg)
           
 void StrechMeter.dhtRouteCallbackAsync(long identifier, DKSMessage msg)
           
 void PlanetLabDKS.dhtRouteCallbackAsync(long identifier, DKSMessage msg)
           
 

Uses of DKSMessage in org.kth.dks.planetlab.messages
 

Subclasses of DKSMessage in org.kth.dks.planetlab.messages
 class KeepAliveMsg
           
 class LiveNodesMsg
           
 class PingMsg
           
 class PongMsg
           
 class StrechMeasurementMsg
           
 



Copyright © 2010. All Rights Reserved.