class FacebookService::Processor
Public Instance Methods
process_aliveSince(seqid, iprot, oprot)
click to toggle source
# File lib/thrift/facebook_service.rb 267 def process_aliveSince(seqid, iprot, oprot) 268 args = read_args(iprot, AliveSince_args) 269 result = AliveSince_result.new() 270 result.success = @handler.aliveSince() 271 write_result(result, oprot, 'aliveSince', seqid) 272 end
process_getCounter(seqid, iprot, oprot)
click to toggle source
# File lib/thrift/facebook_service.rb 232 def process_getCounter(seqid, iprot, oprot) 233 args = read_args(iprot, GetCounter_args) 234 result = GetCounter_result.new() 235 result.success = @handler.getCounter(args.key) 236 write_result(result, oprot, 'getCounter', seqid) 237 end
process_getCounters(seqid, iprot, oprot)
click to toggle source
# File lib/thrift/facebook_service.rb 225 def process_getCounters(seqid, iprot, oprot) 226 args = read_args(iprot, GetCounters_args) 227 result = GetCounters_result.new() 228 result.success = @handler.getCounters() 229 write_result(result, oprot, 'getCounters', seqid) 230 end
process_getCpuProfile(seqid, iprot, oprot)
click to toggle source
# File lib/thrift/facebook_service.rb 260 def process_getCpuProfile(seqid, iprot, oprot) 261 args = read_args(iprot, GetCpuProfile_args) 262 result = GetCpuProfile_result.new() 263 result.success = @handler.getCpuProfile(args.profileDurationInSec) 264 write_result(result, oprot, 'getCpuProfile', seqid) 265 end
process_getName(seqid, iprot, oprot)
click to toggle source
# File lib/thrift/facebook_service.rb 197 def process_getName(seqid, iprot, oprot) 198 args = read_args(iprot, GetName_args) 199 result = GetName_result.new() 200 result.success = @handler.getName() 201 write_result(result, oprot, 'getName', seqid) 202 end
process_getOption(seqid, iprot, oprot)
click to toggle source
# File lib/thrift/facebook_service.rb 246 def process_getOption(seqid, iprot, oprot) 247 args = read_args(iprot, GetOption_args) 248 result = GetOption_result.new() 249 result.success = @handler.getOption(args.key) 250 write_result(result, oprot, 'getOption', seqid) 251 end
process_getOptions(seqid, iprot, oprot)
click to toggle source
# File lib/thrift/facebook_service.rb 253 def process_getOptions(seqid, iprot, oprot) 254 args = read_args(iprot, GetOptions_args) 255 result = GetOptions_result.new() 256 result.success = @handler.getOptions() 257 write_result(result, oprot, 'getOptions', seqid) 258 end
process_getStatus(seqid, iprot, oprot)
click to toggle source
# File lib/thrift/facebook_service.rb 211 def process_getStatus(seqid, iprot, oprot) 212 args = read_args(iprot, GetStatus_args) 213 result = GetStatus_result.new() 214 result.success = @handler.getStatus() 215 write_result(result, oprot, 'getStatus', seqid) 216 end
process_getStatusDetails(seqid, iprot, oprot)
click to toggle source
# File lib/thrift/facebook_service.rb 218 def process_getStatusDetails(seqid, iprot, oprot) 219 args = read_args(iprot, GetStatusDetails_args) 220 result = GetStatusDetails_result.new() 221 result.success = @handler.getStatusDetails() 222 write_result(result, oprot, 'getStatusDetails', seqid) 223 end
process_getVersion(seqid, iprot, oprot)
click to toggle source
# File lib/thrift/facebook_service.rb 204 def process_getVersion(seqid, iprot, oprot) 205 args = read_args(iprot, GetVersion_args) 206 result = GetVersion_result.new() 207 result.success = @handler.getVersion() 208 write_result(result, oprot, 'getVersion', seqid) 209 end
process_reinitialize(seqid, iprot, oprot)
click to toggle source
# File lib/thrift/facebook_service.rb 274 def process_reinitialize(seqid, iprot, oprot) 275 args = read_args(iprot, Reinitialize_args) 276 @handler.reinitialize() 277 return 278 end
process_setOption(seqid, iprot, oprot)
click to toggle source
# File lib/thrift/facebook_service.rb 239 def process_setOption(seqid, iprot, oprot) 240 args = read_args(iprot, SetOption_args) 241 result = SetOption_result.new() 242 @handler.setOption(args.key, args.value) 243 write_result(result, oprot, 'setOption', seqid) 244 end
process_shutdown(seqid, iprot, oprot)
click to toggle source
# File lib/thrift/facebook_service.rb 280 def process_shutdown(seqid, iprot, oprot) 281 args = read_args(iprot, Shutdown_args) 282 @handler.shutdown() 283 return 284 end