Event.ENTER_FRAME

Hi guys,

If I add an event listener for Event.ENTER_FRAME can it interupt my function ? This is what I mean:

public function myFunction() : void {
a=1;
b=2;
c=3;

// frame gets entered, will it jump to the listener function right here ?

d=4;
e=5;
f=6;
}

Thanks.