2424import com .apicatalog .jsonld .framing .Frame ;
2525import com .apicatalog .jsonld .fromrdf .QuadsToJsonLd ;
2626import com .apicatalog .jsonld .processor .Compactor ;
27- import com .apicatalog .jsonld .processor .Execution ;
27+ import com .apicatalog .jsonld .processor .ExecutionEvents ;
2828import com .apicatalog .jsonld .processor .Expander ;
2929import com .apicatalog .jsonld .processor .Flattener ;
3030import com .apicatalog .jsonld .processor .Framer ;
@@ -74,7 +74,7 @@ public static final Collection<?> expand(
7474 options .loader (),
7575 options .isExtractAllScripts ()),
7676 options ,
77- Execution .of (options ).start ());
77+ ExecutionEvents .of (options ).start ());
7878 }
7979
8080 /**
@@ -92,7 +92,7 @@ public static final Collection<?> expand(
9292 return Expander .expand (
9393 document ,
9494 options ,
95- Execution .of (options ).start ());
95+ ExecutionEvents .of (options ).start ());
9696 }
9797
9898 /**
@@ -127,7 +127,7 @@ public static final Collection<?> expand(
127127 return Expander .expand (
128128 document ,
129129 options ,
130- Execution .of (options ).start ());
130+ ExecutionEvents .of (options ).start ());
131131 }
132132
133133 /* --- COMPACT -- */
@@ -209,7 +209,7 @@ public static final Collection<?> expand(
209209 document ,
210210 context ,
211211 options ,
212- Execution .of (options ).start ());
212+ ExecutionEvents .of (options ).start ());
213213 }
214214
215215 /**
@@ -227,7 +227,7 @@ public static final Collection<?> expand(
227227 final TreeIO context ,
228228 final Options options ) throws JsonLdException {
229229
230- final Execution runtime = Execution .of (options ).start ();
230+ final ExecutionEvents runtime = ExecutionEvents .of (options ).start ();
231231
232232 return Compactor .compact (
233233 Compactor .expand (document , options , runtime ),
@@ -280,7 +280,7 @@ public static final Object flatten(
280280 options .isExtractAllScripts ()),
281281 null ,
282282 options ,
283- Execution .of (options ).start ());
283+ ExecutionEvents .of (options ).start ());
284284 }
285285
286286 /**
@@ -306,7 +306,7 @@ public static final Object flatten(
306306 ? Context .load (context , options .loader ()).content ()
307307 : null ,
308308 options ,
309- Execution .of (options ).start ());
309+ ExecutionEvents .of (options ).start ());
310310 }
311311
312312 /**
@@ -326,7 +326,7 @@ public static final Object flatten(
326326 document ,
327327 null ,
328328 options ,
329- Execution .of (options ).start ());
329+ ExecutionEvents .of (options ).start ());
330330 }
331331
332332 /**
@@ -346,7 +346,7 @@ public static final Object flatten(
346346 ? context .content ()
347347 : null ,
348348 options ,
349- Execution .of (options ).start ());
349+ ExecutionEvents .of (options ).start ());
350350 }
351351
352352 /**
@@ -452,7 +452,7 @@ public static final Object flatten(
452452 document ,
453453 null ,
454454 options ,
455- Execution .of (options ).start ());
455+ ExecutionEvents .of (options ).start ());
456456 }
457457
458458 /**
@@ -475,7 +475,7 @@ public static final Object flatten(
475475 document ,
476476 context ,
477477 options ,
478- Execution .of (options ).start ());
478+ ExecutionEvents .of (options ).start ());
479479 }
480480
481481 /* --- FRAME -- */
@@ -558,7 +558,7 @@ public static final Object flatten(
558558 document ,
559559 frame ,
560560 options ,
561- Execution .of (options ).start ());
561+ ExecutionEvents .of (options ).start ());
562562 }
563563
564564 /**
@@ -596,7 +596,7 @@ public static final Object flatten(
596596 final TreeIO frame ,
597597 final Options options ) throws JsonLdException {
598598
599- final Execution runtime = Execution .of (options ).start ();
599+ final ExecutionEvents runtime = ExecutionEvents .of (options ).start ();
600600
601601 final var contextNode = Context .extract (frame );
602602
@@ -655,7 +655,7 @@ public static final void toRdf(
655655 document ,
656656 consumer ,
657657 options ,
658- Execution .of (options ).start ());
658+ ExecutionEvents .of (options ).start ());
659659 }
660660
661661 /**
@@ -677,7 +677,7 @@ public static final void toRdf(
677677 document ,
678678 consumer ,
679679 options ,
680- Execution .of (options ).start ());
680+ ExecutionEvents .of (options ).start ());
681681 }
682682
683683 /**
@@ -698,7 +698,7 @@ public static final void toRdf(
698698 new TreeIO (document , NativeAdapter .instance ()),
699699 consumer ,
700700 options ,
701- Execution .of (options ).start ());
701+ ExecutionEvents .of (options ).start ());
702702 }
703703
704704 /* --- FROM RDF -- */
0 commit comments