View Javadoc
1   package org.davidmoten.rxjava3.jdbc.callable.internal;
2   
3   import org.davidmoten.rxjava3.jdbc.Type;
4   
5   public final class Out implements OutParameterPlaceholder {
6       final Type type;
7   
8       public Out(Type type) {
9           this.type = type;
10      }
11  
12      @Override
13      public Type type() {
14          return type;
15      }
16  }