File tree Expand file tree Collapse file tree 3 files changed +3
-0
lines changed
csharp/TemperingApplication Expand file tree Collapse file tree 3 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -79,6 +79,7 @@ void process_lot(
7979 dds::core::InstanceHandle instance_handle =
8080 lot_state_writer.lookup_instance (updated_state);
8181 lot_state_writer.dispose_instance (instance_handle);
82+ std::cout << " Lot completed" << std::endl;
8283 }
8384 }
8485} // The LoanedSamples destructor returns the loan
Original file line number Diff line number Diff line change @@ -85,6 +85,7 @@ private void ProcessLot(
8585 // using a dispose
8686 var instanceHandle = lotStateWriter . LookupInstance ( updatedState ) ;
8787 lotStateWriter . DisposeInstance ( instanceHandle ) ;
88+ Console . WriteLine ( "Lot completed" ) ;
8889 }
8990 }
9091 }
Original file line number Diff line number Diff line change @@ -88,6 +88,7 @@ void process_lot(
8888 dds::core::InstanceHandle instance_handle =
8989 lot_state_writer.lookup_instance (updated_state);
9090 lot_state_writer.dispose_instance (instance_handle);
91+ std::cout << " Lot completed" << std::endl;
9192 }
9293 }
9394} // The LoanedSamples destructor returns the loan
You can’t perform that action at this time.
0 commit comments