blob: ea84e14779cedcb5efd930457a6218c56ead0744 [file] [log] [blame]
/****************************************************************************
* Copyright (c) 2004 Composent, Inc. and others.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
* Composent, Inc. - initial API and implementation
*
* SPDX-License-Identifier: EPL-2.0
*****************************************************************************/
package org.eclipse.ecf.core.sharedobject.events;
import org.eclipse.ecf.core.identity.ID;
import org.eclipse.ecf.core.util.Event;
import org.eclipse.equinox.concurrent.future.IFuture;
public class SharedObjectCallEvent implements ISharedObjectCallEvent {
ID sender;
Event event;
IFuture result;
/**
* @since 2.6
*/
public SharedObjectCallEvent() {
}
/**
* @since 2.0
*/
public SharedObjectCallEvent(ID sender, Event evt, IFuture res) {
super();
this.sender = sender;
this.event = evt;
this.result = res;
}
/**
* @since 2.0
*/
public IFuture getAsyncResult() {
return result;
}
/*
* (non-Javadoc)
*
* @see org.eclipse.ecf.core.events.ISharedObjectEvent#getSenderSharedObjectID()
*/
public ID getSenderSharedObjectID() {
return sender;
}
/*
* (non-Javadoc)
*
* @see org.eclipse.ecf.core.events.ISharedObjectEvent#getEvent()
*/
public Event getEvent() {
return event;
}
}