Displaying 1 result from an estimated 1 matches for "paralapply".
2012 Sep 18
0
S4, polymorphism, and parallelization
...declared a method
setGeneric(
name = "superClassMethod",
def = function(object) {standardGeneric("superClassMethod")}
)
setMethod(
f = "superClassMethod",
signature = "A",
definition = function(object) {
# Some code here
}
)
At some point I call function paralapply (similar to parLapply) in this way
my.list <- paralapply(some.other.list, superClassMethod, papply_commondata
= envir.vars)
Then I get an error message as follows:
Error message: Error in function (classes, fdef, mtable) :
unable to find an inherited method for function "superClassMet...