Lines Matching refs:frontend
12 …frontend receives log records from the logging core and then passes them along to the associated s…
14 …frontend is associated with a backend, the corresponding backend will also be constructed by the f…
18 [section:basic_services Basic sink frontend services]
52 [section:unlocked Unlocked sink frontend]
56 …frontend is implemented with the [class_sinks_unlocked_sink] class template. This frontend provide…
62 …frontend part. If we tried to instantiate the frontend on the backend that requires more strict th…
66 [section:sync Synchronous sink frontend]
70 …frontend is implemented with the [class_sinks_synchronous_sink] class template. It is similar to t…
72 … accessed from other threads, unless the access is done through another frontend or a direct refer…
82 [section:async Asynchronous sink frontend]
94 …frontend is implemented in the [class_sinks_asynchronous_sink] class template. Like the synchronou…
96 [note The current implementation of the asynchronous sink frontend use record queueing. This introd…
102 …kend one can call the `stop` method of the frontend. This method will be called automatically in t…
108 …pressed with the optional boolean `start_thread` named parameter of the frontend. In this case the…
110 * Call the `run` method of the frontend. This call will block in the feeding loop. This loop can be…
111 …records`. This method will process all the log records that were in the frontend queue when the ca…
143 …The latency duration and the ordering predicate can be specified on the frontend construction. It …
147 In the code sample above the sink frontend will keep log records in the internal queue for up to on…
149 The ordering window is maintained by the frontend even upon stopping the internal feeding loop, so …