1 package com.github.davidmoten.rx2.functions; 2 3 public interface Consumer3<A, B, C> { 4 5 void accept(A a, B b, C c); 6 7 }