1 31 package org.objectweb.proactive.core.event; 32 33 import org.objectweb.proactive.core.UniqueID; 34 35 46 public class RequestQueueEvent extends ProActiveEvent implements java.io.Serializable { 47 48 public static final int ADD_REQUEST = 10; 49 public static final int REMOVE_REQUEST = 40; 50 public static final int WAIT_FOR_REQUEST = 60; 51 52 53 protected UniqueID ownerID; 54 55 56 61 public RequestQueueEvent(UniqueID ownerID, int type) { 62 super(ownerID, type); 63 this.ownerID = ownerID; 64 } 65 66 70 public UniqueID getOwnerID() { 71 return ownerID; 72 } 73 74 } | Popular Tags |