Initializer Constructor.
For reference, you're planning to run a bundled JavaScript file,
and you're using the NodeJS environment, you can't use the "thread"
mode. You've to use the "process" mode instead.
Header containing initialization data like activation.
Get state.
Get current state of connection state with the worker server.
List of values are such like below:
NONE: This instance is newly created, but did nothing yet.CONNECTING: The connect method is on running.OPEN: The connection is online.CLOSING: The close method is on running.CLOSED: The connection is offline.Compile server and connect to there.
The compile method tries compile JS source code, creates Worker instance
with that code connects to the Worker. To complete the compilation and connection,
the Worker program must open that server using the WorkerServer.open()
method.
Note that, after your business has been completed, you've to close the Worker using
close() or WorkerServer.close(). If you don't close that, vulnerable
memory usage and communication channel would not be destroyed and it may cause the
memory leak.
JS Source code to compile.
Connect to server.
The connect() method tries to create an Worker instance and connect to the
Worker. To complete the connection, the Worker program must open that server using
the WorkerServer.open() method.
Note that, after your business has been completed, you've to close the Worker using
close() or WorkerServer.close(). If you don't close that, vulnerable
memory usage and communication channel would not be destroyed and it may cause the
memory leak.
JS File to be WorkerServer.
ProtecteddestructorDestroy the communicator.
A destroy function must be called when the network communication has been closed.
It would destroy all function calls in the remote system (by Driver<Controller>),
which are not returned yet.
The error instance would be thrown to those function calls. If the disconnection is abnormal, then write the detailed reason why into the error instance.
Optionalerror: ErrorAn error instance to be thrown to the unreturned functions.
Get Driver for RFC (Remote Function Call).
The Controller is an interface who defines provided functions from the remote
system. The Driver is an object who makes to call remote functions, defined in
the Controller and provided by Provider in the remote system, possible.
In other words, calling a functions in the Driver<Controller>, it means to call
a matched function in the remote system's Provider object.
Controller: Definition onlyDriver: Remote Function CallAn interface for provided features (functions & objects) from the remote system (Provider).
Whether to convert type of function parameters to be compatible with their primitive.
A Driver for the RFC.
Join connection.
Wait until the connection to be closed.
Join connection or timeout.
Wait until the connection to be closed until timeout.
The maximum milliseconds for joining.
Whether awaken by disconnection or timeout.
Join connection or time expiration.
Wait until the connection to be closed until time expiration.
The maximum time point to join.
Whether awaken by disconnection or time expiration.
ProtectedreplyData Reply Function.
A function should be called when data has come from the remote system.
When you receive a message from the remote system, then parse the message with your special protocol and covert it to be an Invoke object. After the conversion, call this method.
Structured data converted by your special protocol.
Set Provider
An object would be provided for remote system.
Worker Connector.
The
WorkerConnectoris a communicator class, which creates anWorkerinstance and interacts with it through RPC (Remote Procedure Call). In other words,WorkerConnectorconsiders theWorkerinstance as a remote server accepting only one client; WorkerServer.You can create an
Workerinstance with connect or compile method. The connect method just opens an existing JS (or TS) file, and compile method writes a temporary JS (TS) file, and connects to it. Anyway, theWorkerinstanced program must open the WorkerServer.By the way, don't forget closing the worker to clean up the resources. If the closing be performed by WorkerServer, you can wait the worker server closing through the join method.
Also, when declaring this
WorkerConnectortype, you've to define three generic arguments;Header,ProviderandRemote. Those generic arguments must be same with the ones defined in the target WorkerServer class (ProviderandRemotemust be reversed).For reference, the first
Headertype represents an initial data from the remote client after the connection. I recommend utilize it as an activation tool for security enhancement. The second generic argumentProviderrepresents a provider from client to server, and the otherRemotemeans a provider from the remote server to client.Author
Jeongho Nam - https://github.com/samchon