Version: Unity 6.3 Beta (6000.3)
LanguageEnglish
  • C#

ProcessorInstance.IControl<T0>.OnMessage

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Declaration

public Audio.ProcessorInstance.Response OnMessage(Audio.ControlContext context, Pipe pipe, VersionControl.Message message);

Parameters

Parameter Description
context Context the processor is in.
pipe Cross-thread communications pipe.
message The message someone sent to you through ControlContext.SendMessage. The contents are sent by reference, so you can modify them and the sender will see the changes.

Returns

Response Response.Handled if this ProcessorInstance acknowledged and processed the message, Response.Unhandled if not or ignored.

Description

Called immediately from ControlContext.SendMessage when a message was sent to this ProcessorInstance.