1 31 package org.objectweb.proactive.ic2d.spy; 32 33 import org.objectweb.proactive.core.UniqueID; 34 import org.objectweb.proactive.core.event.FutureEvent; 35 36 public class SpyFutureEvent extends SpyEvent implements java.io.Serializable { 37 38 protected UniqueID creatorID; 39 40 41 public SpyFutureEvent(int eventType, FutureEvent future) { 42 super(eventType, future.getBodyID()); 43 this.creatorID = future.getCreatorID(); 44 } 45 46 49 public UniqueID getCreatorID() { 50 return creatorID; 51 } 52 53 } | Popular Tags |