Skip to content

Conversation

Col-E
Copy link
Collaborator

@Col-E Col-E commented Sep 9, 2023

This is intended for the use case where you initiate one 'base' VM and want to re-use it with different operations that may not have compatible VMInterface processors. Now you can create shallow VirtualMachine copies with a modified VMInterface value and operate on each VM copy.

VirtualMachine base = ...

VirtualMachine  copy = vm.toBuilder()
		.withVmInterface(vmInterface.copy())
		.build()
copy.getInterface().registerInstructionInterceptor(...) // Only affects 'copy' but not origin 'base' VM

…eating simple copies

This is intended for the use case where you initiate one 'base' VM and want to re-use it with different operations that may not have compatible VMInterface processors. Now you can create shallow VirtualMachine copies with a modified VMInterface value and operate on each VM copy.
@Col-E Col-E added the enhancement New feature or request label Sep 9, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant