user106284
user106284

Reputation: 3

actionscript to java (red5)

I'm trying to migrate an existing actionscript program (server part) to java (red5). However, I'm blocked with the following code :

Client.prototype.requestInterview = function () { };

Does anyone know what is the equivalent of Client.prototype in red5?

Upvotes: 0

Views: 534

Answers (1)

skrat
skrat

Reputation: 5562

By defining object (function in your case) in "prototype", you are basically defining class member. In your case it would be regular instance methods (public in java)

Upvotes: 2

Related Questions