Waiting for a transition to be completed?

I use Tweener.AddTween () to apply some transitions to my sprites who say quarter of a second. Once the transition is complete, I need to do something else. The problem is the line immediately after the transition is executed immediately (it does not wait for the transition to complete) and all that mess up. Is it possible in a synchronous way expect the transition ends without taking CPU in a loop, etc.?

Hey p3pp3r,

There is a setting for the tweener Oregon 'onComplete' call that performs a function is completed. It goes right into the addTween method.

Here are more details on the onComplete parameter (along with several other more useful):

http://hosted.Zeh.com.br/Tweener/docs/en-us/parameters/index.html

example:

Tweener.addTween(myobj, {x: 45, onComplete: myFunction});

hope that helps. Good luck!

Tags: BlackBerry Developers

Similar Questions

  • waiting for the task to be completed

    I inherited a program that tests a hardware device extensively.  A test turns or several times each channel of AI and bed the waveform of channel I.  I use a card PXI-6229 DAQ with c# .NET.  The program is suspended in the while loop, wait until the task is complete. This is the code:

    public bool TestThisChannel (object nullObject) {}
    Double coversionFactor;
    String name;
    String Description;
    _PXI6229_SLOT12.getChannelInfo ((int) nullObject, name, coversionFactor, to the Description);
    _PXI6229_SLOT12. StartAnalogInput6s (Name);
    for (int i = 0; i)< 5;="" i++)="" {="" 5="">
    _PXIChassis.SetPowerRelayOn (null);
    _PXIChassis.Wait500ms (null);
    _PXIChassis.SetPowerRelayOff (null);
    _PXIChassis.Wait500ms (null);
    }
               
    While {(_PXI6229_SLOT12.runningTask!=null)}
    } //Wait task is completed

    AnalogMultipleInputTask private task;
    runningTask of public work;
    private AsyncCallback analogCallback;
    Private AnalogMultiChannelReader analogInReader;
    public AnalogWaveformdata;

    Public Sub StartAnalogInput6s (string AIChannel)
    {
    Create a new task
    try {}
    AnalogMultipleInputTask = new Task();

    Create a virtual channel
    AnalogMultipleInputTask.AIChannels.CreateVoltageChannel (AIChannel, "",)
    (AITerminalConfiguration) (-1),-10, 10, AIVoltageUnits.Volts);

    Configure synchronization settings
                   
    AnalogMultipleInputTask.Timing.ConfigureSampleClock ("", 100000, SampleClockActiveEdge.Rising, SampleQuantityMode.ContinuousSamples, 600000);
                   
    Check the task
    AnalogMultipleInputTask.Control (TaskAction.Verify);

    Prepare the table for the data
    runningTask = AnalogMultipleInputTask;
    analogInReader = new AnalogMultiChannelReader (AnalogMultipleInputTask.Stream);
    analogCallback = new AsyncCallback (EndAnalogInput);

    For .NET Framework 2.0 or a later version, use SynchronizeCallbacks to specify that the object
    Marshals the callbacks on the appropriate threads.
    analogInReader.SynchronizeCallbacks = true;
    analogInReader.BeginReadWaveform (600000, analogCallback, AnalogMultipleInputTask);
    } catch (Exception exception) {}
    MessageBox.Show (exception. (Message);
    runningTask = null;
    AnalogMultipleInputTask.Dispose ();
    }
    }

    public void EndAnalogInput (IAsyncResult ar)
    {
    Try
    {
    If (runningTask is ATR AsyncState)
    {
    Read the data of the channels
    data = analogInReader.EndReadWaveform (ar);
    }
    }
    catch (System.exception DaqException)
    {
    Display errors
    MessageBox.Show (exception. (Message);
    runningTask = null;

    AnalogMultipleInputTask.Dispose ();
    }
    }

    Any help will be appreciated.

    Thank you

    Howard

    Thanks Mason. You got me thinking on the right track.  I made a few changes based on an example I found of NOR.  I changed analogInReader.BeginReadWaveform (...) of data = analogInReader.ReadWaveform (600000) and I changed the while (_PXI6229_SLOT12.runningTask! = null) {} to _PXI6229_SLOT12.runningTask.WaitUntilDone () and it seems to work fine.

    Thanks for your help.

    Howard

  • Script to wait for Clone task is completed

    Good day, as part of the post, I run a command that enables the NIC and sets the right Port-Group of cloning process. I put a sleep command in each environment is diferrent, so I find myself always change this duration of sleep because the cloning process does not end in the time of sleep and the rest of the script fails. So in order to get rid of the sleep control that I want to capture the CloneVM_Task and pass this parameter to wait-task that will force the completion of the ClonVM_Task. I could just make sure no other tasks are running but this task, but as we all know that alays can't be the case. So that's what I did.

    I begin a deployment of FVO to have an another long running task. Then I run the script.

    If ((Get - PSSnapin - name Vmware.VimAutomation.Core - ErrorAction SilentlyContinue) - eq $null) {Add-PSSnapin "Vmware.VimAutomation.Core"}

    # Virtual Center details
    $server_address = "MYvCenter name" or IP

    SE connect-VIServer-Server $server_Address - user username-pass password - WarningAction SilentlyContinue


    #Create Master VM Templates
    #
    # Here we import the CSV file with the account information and he piped in a Foreach-object
    # Creating a Variable that imports the csv file that contains all data of the virtual machine

    CD "e:\Scripts.
    $InputFile = import-Csv "E:\scripts\mycloneinput.csv".
    $InputFile | {ForEach-Object

    $ip = $_. VM_IPAddress
    $GName = $_. VM_Guestname
    $TName = $_. Template_name
    $HName = get-VMHost "myhostname" # 1 first Select
    $Desc = $_. Description
    $Dstore = $_. Datastore_Name
    $Spec = $_. Customization
    $Folder = $_. Folder
    $Sfolder = $_. Subfolder
    $NIC = $_. NIC
    $NIC_Lable = $_. NIC_Label
    $Gateway = $_. NIC_Gateway
    $SubnetMask = "255.255.255.0".
    $DNS1 = $_. DNS1
    $DNS2 = $_. DNS2

    Write-host "creation: ' $GName
    Write-host "template name is: ' $TName

    # This takes variables and creates the virtual machine
    Get-OSCustomizationSpec $Spec | Get-OSCustomizationNicMapping | »
    Game-OSCustomizationNicMapping - IpMode UseStaticIP - $ip - $SubnetMask subnet mask - DNS IpAddress $DNS1, $DNS2 - DefaultGateway $Gateway
    New-VM-name $GName - location $Folder - model $TName - host $HName - $Dstore - $Desc Description data store - OSCustomizationSpec $Spec - RunAsync-confirm: $false

    #######################################
    #Waiting for cloning process to finish.
    #######################################

    $$$ Under notes show a little history of how I got to this point.

    $$ Note1: the first attempt, I just captured running tasks and their past to the task pending. "Well, since the deploy OVF and ClonVM_Task where it runs would wait up to two when completed by the end."

    $$ Note2: so I added the If Else loop below that failed, because $RTask never equaled only CloneVM_Task, but was a table of two.

    $$ Note3: I tried to us below to separate the two tasks to help

    # $RTask = get-task-status running (who captured the two tasks running)

    # $Array = $Rtask.Split("") (Errored with the method call failed because [System.Object []] contains a method named 'Split'.)
    # So I tried to divide the table like this. ForEach ($Task in $Rtask.Name - Split("")) {Write-Host "my tasks are:" $Task}


    Get-task-status Running | Export-CSV "E:\scripts\Current_Tasks.csv".
    $InputFile2 = import-CSV "E:\scripts\mmca\mmca_Current_Tasks.csv".
    $InputFile2 | {ForEach-Object
    $RTask = $_. Name
    Write-Host "current task is: ' $RTask
    IF ($RTask - eq "CloneVM_Task") {}
    Write-Host "current task of Clonning is: ' $RTask
    Write-Host "in the meantime the cloning process finish.
    Waiting-task-task $MyTask
    }
    Else {}
    Write-Host "no cloning process is executed.
    }
    }

    # This allows the NIC and set the correct Port Group
    Get-VM-name $GName | Get-NetworkAdapter-name $NIC | Together-NetworkAdapter - NetworkName $NIC_Lable-confirm: $false - StartConnected $true

    }

    When I run the present, I get the following:

    # #This shows the task start Clonning #.

    erverId: /[email protected]:443 /
    Status: running
    IsCancelable: true
    PercentComplete: 5
    StartTime: 03/05/2013 00:52:13
    FinishTime:
    ObjectId: VirtualMachine-vm-382
    Result:
    Description: Clone virtual machine
    ExtensionData: VMware.Vim.Task
    ID: Work-task-2070
    Name: CloneVM_Task
    UID: /[email protected]:443 / task = work-work-2070 /

    #########################################################

    # #Runs through the tasks running.

    Current task: deploy the model to the FVO
    No cloning process is executed

    # Ignore deploy it task #.

    # #Matches the If statement and continues to process #.
    Current task is: CloneVM_Task
    Task current Clonning is: CloneVM_Task
    Wait for the cloning process to complete

    # #Error #.

    Waiting-Task: cannot bind parameter 'task '. Impossible to convert the value of 'CloneVM_Task' to type 'System.String' type 'VMware.VimAutomation.Sdk.Types.V1.Task '.
    E:\scripts\Working_Create_Master_Templates.ps1:71 tank: 24
    + Wait-task-task < < < < $RTask
    + CategoryInfo: InvalidArgument: (:)) [waiting-Task], ParameterBindingException)
    + FullyQualifiedErrorId: CannotConvertArgumentNoMessage, VMware.VimAutomation.ViCore.Cmdlets.Commands.WaitTask

    $$$ Under notes show a little history of how I got to this point.

    Note1: The first attempt, I have just captured tasks currently running and pending their past to the task. "Well, since the deploy OVF and ClonVM_Task where it runs would wait up to two when completed by the end."

    NOTE2: So I added the If Else loop below which failed because $RTask never equaled only CloneVM_Task, but was a picture of two tasks.

    Note3: I tried to use the following to divide the two tasks:

    $RTask = get-task-status running (who captured the two tasks running)

    foreach ($Task in $Rtask - Split(""))
    {
    {Write-Host "my tasks are:" $Task}
    IF ($Task - eq "CloneVM_Task") {}
    Write-Host "current task of Clonning is: ' $Task
    Write-Host "in the meantime the cloning process finish.
    Waiting-task-task $Task
    }
    Else {}
    Write-Host "no cloning process is executed.
    }


    }

    # #Output the little script above #.

    Current task: deploy OVF model CloneVM_Task
    My tasks are: deploy
    My tasks are: OVF
    My tasks are: model
    My tasks are: CloneVM_Task
    Task current Clonning is: CloneVM_Task
    Wait for the cloning process to complete
    Waiting-Task: cannot bind parameter 'task '. Impossible to convert the value of 'CloneVM_Task' to type 'System.String' type 'VMware.VimAutomation.Sdk.Types.V1.Task '.
    Online: 11 char: 24
    + Wait-task-task < < < < $Task
    + CategoryInfo: InvalidArgument: (:)) [waiting-Task], ParameterBindingException)
    + FullyQualifiedErrorId: CannotConvertArgumentNoMessage, VMware.VimAutomation.ViCore.Cmdlets.Commands.WaitTask

    I'm new to Powercli and I've scoured Google for a possible answer. I thought I might have a solution that has been published on the VMware PowerCLI Forum, but I couldn't get this to work. Any help would be greatly appreciated.

    #########################################

    I wasn't worried about how to tasks where splits, unless I was trying to follow the import fo the OVF, so that the script went into the loop If and as one of the names for CloneVM_Task then he Treaty. But I got the same error I did in the last version of the above script. That's why I have the version curent thinking that if I exported and then imported the tasks it might make a difference.

    I'm new to Powercli and would like a little help. I am either very close or by a mile off. :-)

    Thank you

    Mitch

    Why don't you store the the task object that is returned when you use the RunAsync switch?

    You can create a loop around the State and wait until the clone job is done.

    $task = New-VM -Name MyVM ... -RunAsync 
    
    while($task.ExtensionData.Info.State -eq "running"){
      sleep 1  $task.ExtensionData.UpdateViewData('Info.State')
    }
    

    The big difference with the Wait-job cmdlet, it is that this will allow you to perform additional work in the While loop.

    Waiting-task the cmdlet waits just until the task is finisned and you can not do anything else.

  • Wait for the mechanism in the parallel execution of packages

    Dear all,

    I submit two packets in parallel as below, which works very well.

    I present this in a shell script which is registered as a front end program.

    Front end program completed in a second, while the data are not visible in the tables, the data is visible only when the execution of the package completed.

    Please can you suggest a mechanism so that I can make the plsql block in shell script to wait for both the delivery of completed packages.

    #!/bin/sh                                                                                 |
    . $CUST_TOP/bin/CUST_ID_CM.env
    export INFA_USER=$INFA_USER
    export userpass=`(echo $1 | cut -f2 -d'"' | cut -d '"' -f3)`
    ploadtype=$5 
    pyear=$7
    #####################################################################
    if [ "$ploadtype" = "Restatement" ]; then
    sqlplus -s $userpass <<EOF
    set heading off feedback off verify off serveroutput on
    spool /usr/tmp/tmp_tph_load.txt
    DECLARE
      l_cnt NUMBER;
    BEGIN
      DBMS_SCHEDULER.CREATE_JOB(job_name            => 'YEARLY_RESTATEMENTS',
                                job_type            => 'STORED_PROCEDURE',
                                job_action          => 'RESTATEMENTS_DATAFEED_PKG.INSERT_RESTATEMENTS_P',
                                number_of_arguments => 1,
                                enabled             => FALSE,
                                auto_drop           => TRUE);
      DBMS_SCHEDULER.SET_JOB_ARGUMENT_VALUE(job_name          => 'YEARLY_RESTATEMENTS',
                                            argument_position => 1,
                                            argument_value    => '$7');
      DBMS_SCHEDULER.ENABLE('YEARLY_RESTATEMENTS');
      DBMS_SCHEDULER.CREATE_JOB(job_name            => 'YEARLY_ACTUALS',
                                job_type            => 'STORED_PROCEDURE',
                                job_action          => 'ACTUALS_DATAFEED_PKG.INSERT_ACTUALS_P',
                                number_of_arguments => 1,
                                enabled             => FALSE,
                                auto_drop           => TRUE);
      DBMS_SCHEDULER.SET_JOB_ARGUMENT_VALUE(job_name          => 'YEARLY_ACTUALS',
                                            argument_position => 1,
                                            argument_value    => '$7');
      DBMS_SCHEDULER.ENABLE('YEARLY_ACTUALS');
      LOOP
        SELECT COUNT(1)
          INTO l_cnt
          FROM DBA_SCHEDULER_RUNNING_JOBS
         WHERE UPPER(job_name) IN
               (UPPER('Yearly_Actuals'), UPPER('Yearly_Restatements'));
        EXIT WHEN l_cnt < 1;
      END LOOP;
    END;
    /
    EOF
    #
    fi
    exit
    

    Your problem is the timing. You can perform the check at DBA_SCHEDULER_RUNNING_JOBS before the entry is actually in there.

    Here is an example. I just submitted a PLSQL_BLOCK waiting for 60 seconds.

    SQL> DECLARE
      2    l_cnt NUMBER;
      3  BEGIN
      4    dbms_output.put_line(systimestamp || ' - Started');
      5    DBMS_SCHEDULER.CREATE_JOB(job_name            => 'YEARLY_RESTATEMENTS',
      6                              job_type            => 'PLSQL_BLOCK',
      7                              job_action          => 'BEGIN DBMS_LOCK.SLEEP(60); END;',
      8                              enabled             => FALSE,
      9                              auto_drop           => TRUE);
     10    DBMS_SCHEDULER.ENABLE('YEARLY_RESTATEMENTS');
     11
     12    LOOP
     13      SELECT COUNT(1) into l_cnt
     14        FROM DBA_SCHEDULER_RUNNING_JOBS
     15       WHERE UPPER(job_name) IN
     16             (UPPER('Yearly_Actuals'), UPPER('Yearly_Restatements'));
     17
     18      EXIT WHEN l_cnt < 1;
     19      dbms_output.put_line(systimestamp || ' - Waiting');
     20      dbms_lock.sleep(10);
     21    END LOOP;
     22    dbms_output.put_line(systimestamp || ' - Completed');
     23  END;
     24  /
    04-DEC-14 02.32.00.075794000 AM -05:00 - Started
    04-DEC-14 02.32.00.121862000 AM -05:00 - Completed
    
    PL/SQL procedure successfully completed.
    

    Now it ends immediately. But you can see that the job is still running.

    SQL>     SELECT COUNT(1)
      2        FROM DBA_SCHEDULER_RUNNING_JOBS
      3       WHERE UPPER(job_name) IN
      4             (UPPER('Yearly_Actuals'), UPPER('Yearly_Restatements'));
    
      COUNT(1)
    ----------
             1
    

    Now I make my code to wait 5 seconds before the audit

    SQL> DECLARE
      2    l_cnt NUMBER;
      3  BEGIN
      4    dbms_output.put_line(systimestamp || ' - Started');
      5    DBMS_SCHEDULER.CREATE_JOB(job_name            => 'YEARLY_RESTATEMENTS',
      6                              job_type            => 'PLSQL_BLOCK',
      7                              job_action          => 'BEGIN DBMS_LOCK.SLEEP(60); END;',
      8                              enabled             => FALSE,
      9                              auto_drop           => TRUE);
     10    DBMS_SCHEDULER.ENABLE('YEARLY_RESTATEMENTS');
     11
     12    -- Wait for a wile before checking
     13    dbms_lock.sleep(5);
     14    LOOP
     15      SELECT COUNT(1) into l_cnt
     16        FROM DBA_SCHEDULER_RUNNING_JOBS
     17       WHERE UPPER(job_name) IN
     18             (UPPER('Yearly_Actuals'), UPPER('Yearly_Restatements'));
     19
     20      EXIT WHEN l_cnt < 1;
     21      dbms_output.put_line(systimestamp || ' - Waiting');
     22      dbms_lock.sleep(10);
     23    END LOOP;
     24    dbms_output.put_line(systimestamp || ' - Completed');
     25  END;
     26  /
    04-DEC-14 02.33.09.294256000 AM -05:00 - Started
    04-DEC-14 02.33.14.347866000 AM -05:00 - Waiting
    04-DEC-14 02.33.24.369777000 AM -05:00 - Waiting
    04-DEC-14 02.33.34.389725000 AM -05:00 - Waiting
    04-DEC-14 02.33.44.410508000 AM -05:00 - Waiting
    04-DEC-14 02.33.54.430561000 AM -05:00 - Waiting
    04-DEC-14 02.34.04.450684000 AM -05:00 - Waiting
    04-DEC-14 02.34.14.462191000 AM -05:00 - Completed
    
    PL/SQL procedure successfully completed.
    
    SQL>
    

    Now you can see the code entered in the loop and waited.

  • wait for a task

    I'm cloning a VM and need to wait for the task to be completed in my perl script.

    I looked at the documentation for the SDK, (on the subject of the task and taskinfo) I don't see anything for this.

    If anyone has example of perl code that does this, it would be really appreciated.

    Suresh.

    Here's a little function that allows you to wait a task ends, she essentially loop until the State is success OR if it error. Remember, when you get to a task, you only have access to it for about 10 min, once that happened, even if you have the handle of taskRef, you cannot question him. You will need to use the tasks and the CreateCollectorForTasks Manager to collect the specific task and query its status and basically block until it is complete.

    
    my $task = ...
    my $success = "suceess!";
    
    &getStatus($task,$sucess);
    
    sub getStatus {
            my ($taskRef,$message) = @_;
    
            my $task_view = Vim::get_view(mo_ref => $taskRef);
            my $taskinfo = $task_view->info->state->val;
            my $continue = 1;
            while ($continue) {
                    my $info = $task_view->info;
                    if ($info->state->val eq 'success') {
                            print $message,"\n";
                            return $info->result;
                            $continue = 0;
                    } elsif ($info->state->val eq 'error') {
                            my $soap_fault = SoapFault->new;
                            $soap_fault->name($info->error->fault);
                            $soap_fault->detail($info->error->fault);
                            $soap_fault->fault_string($info->error->localizedMessage);
                            die "$soap_fault\n";
                    }
                    sleep 5;
                    $task_view->ViewBase::update_view_data();
            }
    }
    

    =========================================================================

    William Lam

    VMware vExpert 2009

    Scripts for VMware ESX/ESXi and resources at: http://engineering.ucsb.edu/~duonglt/vmware/

    Twitter: @lamw

    repository scripts vGhetto

    Introduction to the vMA (tips/tricks)

    Getting started with vSphere SDK for Perl

    VMware Code Central - Scripts/code samples for developers and administrators

    VMware developer community

    If you find this information useful, please give points to "correct" or "useful".

  • waited for the parent session complete

    Hello

    I have a situation, where I have to put scenarios of execution in a package of ODI

    Let me explain


    package1 - scen1-> scen2-> scen3

    Package2 - scen4-> scen5-> scen6

    Package3 - scen7-> scen8-> scen9

    now I have to build a main package, where I call especially packages

    as

    PACKAGE FOR THE MAIN:
    package1_scen-> package2_scen-> package3_scen


    now I have to wait for lot 1 and all scenarios within package1 is completed before package2 started and same for package3


    I tried with odiwaitforchild session and running packag21_scen, package2_scen, package3_scen in synchronous mode

    but when I started the main package of all the scenarios running concurrently.


    can anyone suggest how to achieve this.

    Published by: 916710 on March 1, 2012 01:30

    Then exactly what problem faced while executions of pkg, are you generate script for internship (pkg) or not.

    scenario for each package to generate and put all the scenarios in a new package.

    See you soon,.
    Surya.

  • VMware-vim-cmd: waiting for orders to be completed?

    Hi all, I adapt a backup script I made for VMware Server 1.x to VMware Server 2.x and I'm having trouble doing ordinary things like 'suspend' or "create a snapshot" "a VM from starting.

    There are several ways to do the same thing in a certain way does not require any authentication, others indeed require authentication, for example, to create a snapshot, you can:

    VMware-vim-cmd vmsvc/snapshot.create 'id of the virtual machine.

    or

    vmrun-h https://127.0.0.1:8333 / sdk u user-p password of snapshot "[datastore] /vm_path/vmx_name.vmx '

    The problem with vmware-vim-cmd approach is that it does not wait for the command to complete, and is not a welcome feature in a script.

    Instead, the vmrun command wait until the end, but to use it in a script, you must also include the identification of the user and password information in the script, and it is not welcome.

    So the question (as shown in the topic) is: is it possible to make orders of vim-vmware-cmd to wait until the end?

    If someone knows how to do that I would be very grateful

    Thank you for reading,

    10nico

    The vimsh and the vimsh wrapper vmware-vim-cmd is not officially supported by VMware, that being said, I agree that it should allow you to check the situation, etc. It can be a pro/con and depending on how the call command, the wrappers actually communicate to the VI API server, and if you look at the VI API there are all both blocking and non call.

    Vmware-vim-cmd, the command is executed and returns to the shell for most. You might be able to monitor the tasks that is created and ensure that it is completed, but I have not played too much with it.

    [root@himalaya scripts]# vmware-vim-cmd vimsvc
    Commands available under vimsvc/:
    auth/             login             task_cancel       task_list
    connect           logout            task_description
    license           property_dump     task_info
    

    Again, these are undocumented, unsupported and the behavior will vary =)

    I advise to use the VI API (Powershell or VI Perl Toolkit) to accomplish your tasks, and you can even take a look at some of the utilities that are available with the VI Perl Toolkit Utilities: http://www.vmware.com/support/developer/viperltoolkit/viperl15/doc/perl_toolkit_utilities_idx.html

    =========================================================================

    William Lam

    VMware vExpert 2009

    Scripts for VMware ESX/ESXi and resources at: http://engineering.ucsb.edu/~duonglt/vmware/

    repository scripts vGhetto

    http://Twitter.com/lamw

    If you find this information useful, please give points to "correct" or "useful".

  • SHUTDOWN: waiting for active calls to complete.

    Hello

    environment is HP - UX 11.23, Version Oracle 9.2.0.5

    We had an ORA-600 error yesterday. We reported this error to support and suggested to install patch 9.2. 0.8

    However, I have a question. As you can see from the output to the alert log file it took a long time to stop the instance using the immediate option:

    Sun Nov 9 17:33:58 2008
    Closure of proceedings: in addition to logons disabled
    Closure of proceedings (immediate)
    License of the high waters = 454
    Sun Nov 9 17:39:07 2008
    Ongoing call for the program process 3991 user 'oracle' "oracle@xyz (TNS V1 - V3)"
    SHUTDOWN: waiting for active calls to complete.
    Sun Nov 9 17:50:36 2008
    ALTER DATABASE CLOSE NORMAL

    Is there anything, can be done in such a situation to accelerate the closure of the proceeding?

    Oracle database has an ease of use and a center of streams queues / advanced.
    These installations are possible by putting in place some auxiliary processes.
    These settings govern the number of processes.
    Their definition to 0 turns completely off the installation.
    You change the setting in memory, like you, that you have rebounded from the database, it will return to the value in the spfile and facilities will work again.
    Deactivation is especially useful when you that facilities are frequently used, that is to say you have a job running every 30 seconds.
    In the past, several databases, it was the only way to allow an immediate stop.

    Hope this helps,

    --
    Sybrand Bakker
    Senior Oracle DBA

  • Visual Studio Plugin: Waiting for Simulator to complete loading... forever.

    Win 2K 3, Visual Studio 2 k 8

    I created a Web Site (does change all the files - just left default.aspx).

    Then I changed to browse with default for blackberry.

    Then I pressed the green button of debugging.

    Beginning BlackBerry MDS - CS has been rapid.

    Then it opens emulator "BOLD" BlackBerry, and after awhile, I clicked on 'Détails' on the dialog box 'start debugging '. This is what he had:

    [Start BlackBerry MDS - CS] From BlackBerry MDS Connection Services...
    [Start BlackBerry MDS - CS] FACT!
    [Starting Device Simulator] Launch Fledge: Throwing file - C:\Program Search Plugin VS9 Motion\BlackBerry 1.2\handheld\simulator_4_6_0\fledge.exe, settings - / app = Jvm.dll / Pocket = 9000/app-param = DisableRegistration/app-param = JvmAlxConfigFile:9000.xml/app-param = JvmDebugModeOff/session for partner = 9000/app-param = MdsDebugn/app-param = BrowserDebugPort:5557/app-param BrowserDebug =n/app-param = NoTutorial/Dungeon-lcd-on/pin = 0x2100001A/app - param = BrowserDebugPort:5557, skin - BlackBerry 9000, PIN - 0x2100001A
    [Starting Device Simulator] Waiting for Simulator to finish loading...

    The device was done loading some time ago and I can even open the web browser in Microsoft device emulator and go to bing and even my http://localhost:xxxx / website1, or whatever.

    Any ideas?

    I have only 1 network card.

    I tried with my firewall and turn off.

    I got further away now though.

    I realized that if I hit F5 and then launch and I click 'Cancel' and then go to Task Manager and instead of killing the user interface process that loads the emulator instead of this I close the RIM.NET.XXX or whatever the process.

    Then wait for the emulator to access the main screen then press on F5 again to join occurs but the emulator can't hit google or my local host.

    A companion of mine office has been able to operate its box with the same approach "kill process".

    It is running Win XP with Visual Studio 2 k 8 (without service pack 1 even if the requirements say it needs service pack 1)...

    Do you think its because my OS is Win 2 k 3?

    And why did kill Rim.Net process also?

  • waiting for a task to complete

    During the planning of a work like this:

    () dbms_scheduler.create_job
    job_name = > a_prog_name | "_JOB."
    job_type = > 'executable. "
    job_action = > a_local_dir | '\' || File1 | ' > null',.
    enabled = > true,
    auto_drop = > true
    );


    Is it possible to wait for the work to be done before treatment can continue?

    Thank you
    Thomas

    Hello

    You can do this by leaving enabled-false online during the creation of employment and then by doing a run_job on the job. The run_job (with use_current_session-online true) will execute the task and wait for it to finish. If you do this, you will also need to manually deposit work using drop_job.

    Hope this helps,
    Ravi.

  • Wait for the execution of all the

    Hello

    I have a simple question about the option "wait for complete execution" using new:

    the appellant until AFTER the execution of the cleaning or just after the main sequence?

    concerning

    At the end of the cleaning to the tag.

    Hope this helps,

  • Error: "Waiting for programs fill" while trying to add or remove programs

    Original title: cannot complete programs

    When I open Add / Remove programs in the Control Panel, the statement "waiting for programs fill" came and I waited and waited, nothing else has happened then - this hanging window. I tried the DIFFICULTY inside of MS DIFFICULTY, it did not help. Help, please.

    Hi magjoseki,
     
    Follow the steps in the section "Let fix me it myself" article and check if it helps.
     

    Important: This section, method, or task contains steps that tell you how to modify the registry. However, serious problems can occur if you modify the registry incorrectly. Therefore, make sure that you proceed with caution. For added protection, back up the registry before you edit it. Then you can restore the registry if a problem occurs. For more information about how to back up and restore the registry, click on the number below to view the article in the Microsoft Knowledge Base: 

    How to back up and restore the registry in Windows

  • "Waiting for socket available...". »

    After the AC1200 of LINKSYS router I can not load some sites in my Chrome.
    Chrome status bar continues to display: "Waiting for socket available...". "One of the Web sites not available for me is more Google search resutls.

    It works well with the previous router.

    It works well when I bypass my LINKSYS AC1200 and connect directly to my cable modem.

    It works fine from Firefox. It works even with the chrome in incognito mode.

    Only the combination of LINKSYS AC1200 with my Chrome me goves this access problem.

    No idea where to find do more "available for my Chrome sockets" ;-), please

    Clear the cache of chrome.

    Try IE 8, 9, 10 or 11, set the compatibility mode and test again.
    Disable any security browser addons such as No Script and Ad-Block or set them to allow all Pages when it is connected to the router.
    Clear all caches browser.
    Don't forget to log on to the Admin account on the router.
    Try disabling these features in Chrome:
    Top right corner, few bars options > settings > settings (left) > see the advanced settings.
    Uncheck the box for these:
    Use a web service to help solve the navigational errors
    Use a service forecast for complete searches and URLS typed in the address bar
    Predict the actions of the network to improve the performance of page loading
    Activate the protection from phishing and malware

    Which modem to ISP Mfr and model # you have?

  • Start stuck on "Please wait for the Local Session Manager."

    I would say that this problem started a couple of days. Went to start my laptop (Toshiba) and he sat on the "Please wait" message forever.

    Had no problems to start in safe mode. Looked up various ways of addressing the problem.

    Was able to change the resume date and back a few weeks ago. Still no luck. Happened to read something on a printer Epson being perhaps the problem driver (it was installed a day before the date of restoration chosen). Uninstalled the drivers, computer still does not start.

    Tried restarting running. I do not have the CD it came with Vista, but it was an option when you hold F8 during startup (I think?) Couldn't find any problems.

    Ran check on memory. No problem either.

    Changed settings for a verbose startup and ran a Diagnostic startup - all good for this. Then tried selective startup load system services... This is when the error occurs. When starting, it hangs on "Please wait for the Local Session Manager" and does nothing more.

    I looked in the event viewer to see what came that time and a couple mistakes were:

    Event ID 6000: winlogon notification subscriber was unavailable to handle a notification event.

    Event ID 7026: the next (s) start or start failed to load system
    spldr
    Wanarpv6

    It would be very useful for me not having to run my computer in safe mode automatically all the time, although it is useful that I at least have that option. Any help is greatly appreciated.

    Hello

    1. by chance your computer is connected to a domain environment?

    2. as you mentioned in your article that you tried the selective startup, I want to confirm if you have disabled the services left 3rd after hide Microsoft services?

    If you did not disable these services make sure you disable and then check if it works.
    See the article below for more information.
    How to troubleshoot a problem by performing a clean boot in Windows Vista or in Windows 7
    http://support.Microsoft.com/kb/929135
    Note: When the diagnosis is complete, don't forget to reset your computer to normal startup. Follow step 7 in the above article.

    I hope this helps.

    Thank you, and in what concerns:
    Shekhar S - Microsoft technical support.

    Visit our Microsoft answers feedback Forum and let us know what you think.
    If this post can help solve your problem, please click the 'Mark as answer' or 'Useful' at the top of this message. Marking a post as answer, or relatively useful, you help others find the answer more quickly.

  • Wait for the update not associated with the previous update

    Just something VERY disturbing happened on Windows 7 PRO.

    When I started my machine today I received the notice:

    "Waiting for update complete"

    100%

    Do not log off the coast... (Sorry was not able to copy the exact message)

    The problem is that I shut down my computer early Sep 30,2015.

    My last update was the Sep25, 2015

    and it's around 23:00 UT 30 September 2015.

    Nothing should be changing my machine without telling me he'll do

    AND it identifies...

    On my way to this page, I noticed several very suspicious activity reports,

    as [random character string] as an ID for a Windows update.

    What is going on?

    We deserve a real explanation...

    A person found a weakness in the process of "updating" windows and exploited it?

    Member of the ACM 3622339 since 1990.

    Hello

    Thank you for visiting Microsoft Community and we provide a detailed description of the issue.

    According to the description, I understand the problem installation of updates on the system.

    Certainly, I understand your concern and will try my best to help you.

    There could be a possibility that this issue would have intervened if the updates were not installed correctly on the system.

    I can really imagine the disadvantages suffered by you during the installation of Windows updates. Sometimes it is really frustrating when things do not work correctly with the machine that we are planning and wait. So, we need find the root cause of the problem and I would definitely you help solve the problems in the right direction in order to get this fixed number.

    The question arises if the Windows Update package is not configured properly, or because of incomplete installation. I would say so, you remove any external media connected to the computer and try to crash restart your computer 2 or 3 times and check if you get through this error message.

    In addition to this, I suggest you try the following methods if you are able to boot to the desktop and check if the problem persists.

    Method 1:

    I suggest you run the Windows Update Troubleshooter to check if it works. Please follow the link given below.

    Open the Windows Update troubleshooting tool

    http://Windows.Microsoft.com/en-in/Windows7/open-the-Windows-Update-Troubleshooter

    Note: The troubleshooter above checks if the network card and Windows Update services work properly.

    If the problem persists, follow method 2

    Method 2:

    I suggest you to reset manually the update of Windows components. Please follow the steps outlined in the article below and check if it works.

    How to reset the Windows Update components?

    http://support.Microsoft.com/kb/971058

    Note: This section, method, or task contains steps that tell you how to modify the registry. However, serious problems can occur if you modify the registry incorrectly. Therefore, make sure that you proceed with caution. For added protection, back up the registry before you edit it. Then you can restore the registry if a problem occurs. For more information about how to back up and restore the registry, click on the number below to view the article in the Microsoft Knowledge Base:

    How to back up and restore the registry in Windows

    Now, you can try to run the Windows updates and check if the steps above to solve the problem.

    I hope this information is useful.

    Please let us know if you need more help, we will be happy to help you.

    Thank you.

    Jayant

Maybe you are looking for

  • Chat back for 2 seconds each answers

    Hello, I found a bug, when I chat with my friend, it goes to 3-4 text/seconds of responses that have been accomplished, it is annoying me because I have OCD, and I don't know what they mean, its just like a mess, I tried to reinstall it and it won't

  • HP 15-n067nr: unknown device device ACPI\HPQ6007\3 &amp; 2411E6FE &amp; 0

    This pilot is missing after a new installation of Win8.1 on a new SSD.My research concludes that the HP 3D software player Guard, which protects only the mechanical hard drives.Am I right in thinking that I didn't need it any longer with an installed

  • Satellite L300-1AQ connection to Toshiba Regza 37 '' LCD AV series 37AV505DB

    I think buying the Satellite L300-1AQ, how will I be able to connect to my Toshiba Regza 37 '' LCD? The LCD has no HDMI VGA port only 2, is a Toshiba laptop equipped with an HDMI port?What is the most cost-effective way on the connection of all lapto

  • HP2000

    I have a HP 2000 - 2b89WM #ABA C2M42UA product code which has failed to complete the factory reset. The 1st time it worked sort of the recovery partition, Windows 8, then during the update process to get 8.1 it is impossible to install one of the upd

  • Windows Defender - Application not found (in Windows 7 professional OS)

    Hello I have a computer running on Windows 7 Professional on my place of work. However, Windows Defender does not seem to work properly because it cannot be opened when searched for in the START Menu and the Windows Defender icon is not correct (plea