Process manager

버전 1.1.0.0 (9.85 KB) 작성자: Brian Lau
Matlab class for launching and managing asynchronous processes
다운로드 수: 318
업데이트 날짜: 2022/12/6

편집자 메모: This file was selected as MATLAB Central Pick of the Week

A Matlab class for launching and managing processes that run asynchronously from the main Matlab process. This can already be done with something like system('dir &'); but processManager makes it easy to:
> launch and manage multiple processes
> peek to check on the progress of running processes
> capture & display stdout and stderr streams of each process
> issue event notifications when processes finish

while allowing you to continue working in the main Matlab process.

Installing Steve Eddins's linewrap function is useful for dealing with unwrapped messages. His xUnit test framework is required if you want to run the unit tests.

Example:
p = processManager('command','ping www.google.com');
p.printStdout = false; % To keep the process running silently,
p.check(); % ... Check process status
p.printStdout = true; % When you want to see the io stream again
p.stop(); % Terminate

Go to https://github.com/brian-lau/MatlabProcessManager more info.

인용 양식

Brian Lau (2024). Process manager (https://github.com/brian-lau/MatlabProcessManager), GitHub. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R2008a
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Get Started with MATLAB에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

GitHub 디폴트 브랜치를 사용하는 버전은 다운로드할 수 없음

버전 게시됨 릴리스 정보
1.1.0.0

Update description.

1.0.0.0

이 GitHub 애드온의 문제를 보거나 보고하려면 GitHub 리포지토리로 가십시오.
이 GitHub 애드온의 문제를 보거나 보고하려면 GitHub 리포지토리로 가십시오.