Roku Developer Program

Join our online forum to talk to Roku developers and fellow channel creators. Ask questions, share tips with the community, and find helpful resources.
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
coopdaddyswag
Binge Watcher

Pass Anonymous Function as a Parameter?

I am trying to create a bunch of callback functions that are in an Associative Array, which then is saved to another Scenegraph object's interface field.

However, when accessing the interface field in the same object, it states that the function is invalid.

Object 1:


callbacks = {
    afterchildcreatecallback: function ()
      print "THIS IS A CALLBACK FUNCTION"
      return 1
    end function
  }

  m.contentReader = createObject("roSGNode", "ContentReader")
  m.contentReader.observeField("content", "setLists")
  m.contentReader.contenturi = "pkg:/data/contentLists/" + settingFocused.id + "Data.xml"
  m.contentReader.callbacks = callbacks
  m.contentReader.control = "RUN"


Object 2:

<component name = "ContentReader" extends = "Task" >
  <script type = "text/brightscript" uri="pkg:/components/taskRunners/contentReader.brs"></script>

  <interface>
    <field id = "contenturi" type = "uri"></field>
    <field id = "content" type = "node"></field>
    <field id = "callbacks" type = "assocarray"></field>
  </interface>

</component>


When accessing the callbacks field in Object 2, I can see the added object but the function that was defined inside it, is invalid.

Is this allowed? Or do I have to pass the function through a `setter` method?
0 Kudos
1 REPLY 1
RokuKC
Roku Employee
Roku Employee

Re: Pass Anonymous Function as a Parameter?

"coopdaddyswag" wrote:
I am trying to create a bunch of callback functions that are in an Associative Array, which then is saved to another Scenegraph object's interface field.

However, when accessing the interface field in the same object, it states that the function is invalid.
...
Is this allowed? Or do I have to pass the function through a `setter` method?


There are limitations as to what types of nested data may be stored in a field of type array or associative array, though I don't know where the documentation is that I might point you to. As far as I know, you can't store any values of type Function, nor most non-primitive Object types other then Array, Associative Array, and I think roSGNode. Any values of non-supported type are silently dropped from the container when assigning to the field.
0 Kudos