function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
sandeep reddy 37sandeep reddy 37 

let tell me about flow concept

i have doubght about flow it s not getting out put just help me and how can we invoke class in to flow please tell me 
@Karanraj@Karanraj
Make sure that you are using @InvocableMethod to allow flow to invoke apex method.
Check this blog post for the example

1. http://cloudyworlds.blogspot.ca/2014/09/invoking-apex-callouts-through-visual.html
2. https://andyinthecloud.com/2014/10/26/calling-flow-from-apex/
sandeep reddy 37sandeep reddy 37

 just see and catch error and also tell me
global class flowconcept implements process.plugin {

global process.plugindescriberesult describe(.){
process.plugin.describeresult res=new process,plugindescriberesult.inputperameter('name','the person name' false);
res.inputparamter('age','the age',false);
res.outputperameter('name','the name',false);
res.outputperameter('age','the age',false);
 

global process.pluginresult invoke(process.pluginrequest results){
​results.inputparameter(name);
results.inputparameter(age);
process.pluginresult out=new process,pluginresult();
out.outputparameter(name);
out.outputparameter(age);
}

so please tell me man