MvsCommandCallback

General discussion on the JZOS batch launcher and toolkit
Post Reply
lrbowli

MvsCommandCallback

Post by lrbowli »

Do you have any sample code the uses MvsCommandCallback? Thanks
dovetail
Site Admin
Posts: 2022
Joined: Thu Jul 29, 2004 12:12 pm

Post by dovetail »

Code: Select all

ZUtil.setMvsCommandCallback(new MvsCommandCallback() {
			public void handleModify(String modifyCommand) {
				System.out.println("Received Modify command: " + modifyCommand);
			}
			
			public void handleStart(String startCommand) {
				System.out.println("App started with start command: " + startCommand);
			}
		});
See also the javadoc for ZUtil and MvsCommandCallback.
Post Reply