Dali Provisional API
Release 3.2

org.eclipse.jpt.common.utility.command
Interface ExtendedCommandContext

All Superinterfaces:
CommandContext
All Known Subinterfaces:
CombinedExtendedCommandContext, StatefulExtendedCommandContext

public interface ExtendedCommandContext
extends CommandContext

This interface extends the normal command context; it allows the client to specify when a command must be executed synchronously.

Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability. It is available at this early stage to solicit feedback from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken (repeatedly) as the API evolves.


Method Summary
 void waitToExecute(Command command)
          Suspend the current thread until the specified command is executed.
 boolean waitToExecute(Command command, long timeout)
          Suspend the current thread until the specified command is executed or the specified time-out occurs.
 
Methods inherited from interface org.eclipse.jpt.common.utility.command.CommandContext
execute
 

Method Detail

waitToExecute

void waitToExecute(Command command)
                   throws InterruptedException
Suspend the current thread until the specified command is executed. The command itself must be executed after any other commands previously passed to the command context (at least when passed from clients executing on the same thread).

Throws:
InterruptedException
See Also:
CommandContext.execute(Command)

waitToExecute

boolean waitToExecute(Command command,
                      long timeout)
                      throws InterruptedException
Suspend the current thread until the specified command is executed or the specified time-out occurs. The time-out is specified in milliseconds. Return true if the command was executed in the allotted time; return false if a time-out occurred and the command was not executed. If the time-out is zero, wait indefinitely.

The command itself must be executed after any other commands previously passed to the command context (at least when passed from clients executing on the same thread).

Throws:
InterruptedException
See Also:
CommandContext.execute(Command)

Dali Provisional API
Release 3.2

Copyright (c) 2012 Oracle. All rights reserved.