Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create intermediate builder model for VM and VM-interface to allow creating simple copies #27

Open
wants to merge 4 commits into
base: master
Choose a base branch
from

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